Fix issue with assigning indexed npcs.

This commit is contained in:
Ottermandias 2023-03-05 14:52:28 +01:00
parent 009499cdf6
commit 64c8f29c47
9 changed files with 31 additions and 29 deletions

View file

@ -297,7 +297,7 @@ public class CommandHandler : IDisposable
{
if( ObjectReloader.GetName( split[ 2 ].ToLowerInvariant(), out var obj ) )
{
identifier = _actors.FromObject( obj, false, true );
identifier = _actors.FromObject( obj, false, true, true );
if( !identifier.IsValid )
{
Dalamud.Chat.Print( new SeStringBuilder().AddText( "The placeholder " ).AddGreen( split[ 2 ] )