mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
fixed an issue causing client to crash
This commit is contained in:
parent
e56238a10c
commit
100f3ae156
2 changed files with 3 additions and 3 deletions
|
@ -136,7 +136,7 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
{
|
||||
//Don't send for static characters (npcs)
|
||||
// todo: this is retarded, need actual mob class
|
||||
if (actor is Character && !actor.hasMoved)
|
||||
if (actor is Character && ((Character)actor).isStatic)
|
||||
continue;
|
||||
|
||||
var packet = actor.CreatePositionUpdatePacket(playerActor.actorId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue