From 2b780687dd818a34cb16b8da36b2fc4bd420780e Mon Sep 17 00:00:00 2001 From: Filip Maj Date: Sun, 2 Apr 2017 13:48:56 -0400 Subject: [PATCH] Actor state from a spawn location wasn't being set. --- FFXIVClassic Map Server/actors/chara/npc/Npc.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/FFXIVClassic Map Server/actors/chara/npc/Npc.cs b/FFXIVClassic Map Server/actors/chara/npc/Npc.cs index 886de6a1..358a55cd 100644 --- a/FFXIVClassic Map Server/actors/chara/npc/Npc.cs +++ b/FFXIVClassic Map Server/actors/chara/npc/Npc.cs @@ -34,6 +34,7 @@ namespace FFXIVClassic_Map_Server.Actors this.positionY = posY; this.positionZ = posZ; this.rotation = rot; + this.currentMainState = actorState; this.animationId = animationId; this.displayNameId = actorClass.displayNameId;