mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-24 21:57:45 +00: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
|
@ -180,7 +180,8 @@ namespace FFXIVClassic_Map_Server.Actors
|
||||||
lastMoveUpdate = DateTime.Now;
|
lastMoveUpdate = DateTime.Now;
|
||||||
return MoveActorToPositionPacket.BuildPacket(actorId, positionX, positionY, positionZ, rotation, moveState);
|
return MoveActorToPositionPacket.BuildPacket(actorId, positionX, positionY, positionZ, rotation, moveState);
|
||||||
}
|
}
|
||||||
return null; }
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
public SubPacket CreateStatePacket()
|
public SubPacket CreateStatePacket()
|
||||||
{
|
{
|
||||||
|
|
|
@ -122,7 +122,9 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
||||||
if (actor is Character && ((Character)actor).isStatic)
|
if (actor is Character && ((Character)actor).isStatic)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
QueuePacket(actor.CreatePositionUpdatePacket());
|
var packet = actor.CreatePositionUpdatePacket();
|
||||||
|
if (packet != null)
|
||||||
|
QueuePacket(packet);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue