mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-28 05:16:08 +02:00
Refactored world server.
This commit is contained in:
parent
9353f77db0
commit
516564a896
33 changed files with 83 additions and 83 deletions
|
@ -189,7 +189,7 @@ namespace FFXIVClassic_World_Server.DataObjects.Group
|
|||
if (session == null)
|
||||
continue;
|
||||
else
|
||||
session.clientConnection.QueuePacket(leaderUpdate.buildPacket(session.sessionId, session.sessionId), true, false);
|
||||
session.clientConnection.QueuePacket(leaderUpdate.buildPacket(session.sessionId));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -226,8 +226,8 @@ namespace FFXIVClassic_World_Server.DataObjects.Group
|
|||
groupWork.addProperty(this, "partyGroupWork._globalTemp.owner");
|
||||
groupWork.setTarget("/_init");
|
||||
|
||||
SubPacket test = groupWork.buildPacket(session.sessionId, session.sessionId);
|
||||
session.clientConnection.QueuePacket(test, true, false);
|
||||
SubPacket test = groupWork.buildPacket(session.sessionId);
|
||||
session.clientConnection.QueuePacket(test);
|
||||
test.DebugPrintSubPacket();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue