mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Added director related code to player and packet processor. Cleaned up some debug messages. Added a flag when a player is "zoning in".
This commit is contained in:
parent
f8ab0cd86d
commit
a30311d12a
10 changed files with 106 additions and 17 deletions
|
@ -16,7 +16,9 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
public uint actorID = 0;
|
||||
Player playerActor;
|
||||
public List<Actor> actorInstanceList = new List<Actor>();
|
||||
|
||||
|
||||
public uint languageCode = 1;
|
||||
|
||||
private ClientConnection zoneConnection;
|
||||
private ClientConnection chatConnection;
|
||||
|
||||
|
@ -95,7 +97,6 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
|
||||
public void updatePlayerActorPosition(float x, float y, float z, float rot, ushort moveState)
|
||||
{
|
||||
|
||||
playerActor.oldPositionX = playerActor.positionX;
|
||||
playerActor.oldPositionY = playerActor.positionY;
|
||||
playerActor.oldPositionZ = playerActor.positionZ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue