stubbed some more functions from kj's ai stuff

- fixed some typos
- cleaned some debug code
This commit is contained in:
Tahir Akhlaq
2017-06-18 22:01:55 +01:00
parent 6b023ceb3c
commit 62055eff04
13 changed files with 97 additions and 223 deletions

View File

@@ -368,17 +368,11 @@ namespace FFXIVClassic_Map_Server.Actors
zone.BroadcastPacketAroundActor(this, ChangeSpeedPacket);
}
public void Update(DateTime tick)
public virtual void Update(DateTime tick)
{
if (this is Character)
{
((Character)this).Update(tick);
}
else if (this is Zone)
{
((Zone)this).Update(tick);
}
}
public void GenerateActorName(int actorNumber)
{