mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 22:44:36 +02:00
Began working on server zone changes.
This commit is contained in:
parent
5370f13b2b
commit
58fda93b45
9 changed files with 186 additions and 17 deletions
|
@ -40,6 +40,7 @@ namespace FFXIVClassic_World_Server
|
|||
mPacketProcessor = new PacketProcessor(this);
|
||||
mWorldManager = new WorldManager(this);
|
||||
mWorldManager.LoadZoneServerList();
|
||||
mWorldManager.LoadZoneEntranceList();
|
||||
mWorldManager.ConnectToZoneServers();
|
||||
|
||||
IPEndPoint serverEndPoint = new System.Net.IPEndPoint(IPAddress.Parse(ConfigConstants.OPTIONS_BINDIP), int.Parse(ConfigConstants.OPTIONS_PORT));
|
||||
|
@ -135,10 +136,9 @@ namespace FFXIVClassic_World_Server
|
|||
}
|
||||
|
||||
public void OnReceiveSubPacketFromZone(ZoneServer zoneServer, SubPacket subpacket)
|
||||
{
|
||||
//subpacket.DebugPrintSubPacket();
|
||||
{
|
||||
uint sessionId = subpacket.header.targetId;
|
||||
|
||||
|
||||
if (mZoneSessionList.ContainsKey(sessionId))
|
||||
{
|
||||
ClientConnection conn = mZoneSessionList[sessionId].clientConnection;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue