mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-12 23:44:34 +02:00
forgot to fix this on conflict resolving
This commit is contained in:
parent
4695193aa0
commit
c55c0b327d
2 changed files with 5 additions and 2 deletions
|
@ -122,7 +122,9 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
if (actor is Character && ((Character)actor).isStatic)
|
||||
continue;
|
||||
|
||||
QueuePacket(actor.CreatePositionUpdatePacket());
|
||||
var packet = actor.CreatePositionUpdatePacket();
|
||||
if (packet != null)
|
||||
QueuePacket(packet);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue