mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-08-03 00:01:57 +02:00
Fixed bug with old "findActor" code since private areas were added. Add scripts for npcs in echo during limsa opening.
This commit is contained in:
parent
eb324062da
commit
0c3f6cc9c4
13 changed files with 149 additions and 27 deletions
|
@ -627,6 +627,13 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
}
|
||||
}
|
||||
|
||||
public void ChangeAnimation(uint animId)
|
||||
{
|
||||
Actor a = zone.FindActorInZone(currentTarget);
|
||||
if (a is Npc)
|
||||
((Npc)a).animationId = animId;
|
||||
}
|
||||
|
||||
public void SetDCFlag(bool flag)
|
||||
{
|
||||
if (flag)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue