mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Reworked zones to allow for isolated zones (IE Opening Zone) and private area instances.
This commit is contained in:
parent
c83b4a12b9
commit
42ba95b69d
14 changed files with 482 additions and 317 deletions
|
@ -19,6 +19,8 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
private ClientConnection zoneConnection;
|
||||
private ClientConnection chatConnection;
|
||||
|
||||
public string errorMessage = "";
|
||||
|
||||
bool isDisconnected;
|
||||
|
||||
public ConnectedPlayer(uint actorId)
|
||||
|
@ -60,7 +62,7 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
|
||||
public void queuePacket(SubPacket subPacket, bool isAuthed, bool isEncrypted)
|
||||
{
|
||||
zoneConnection.queuePacket(subPacket, isAuthed, isEncrypted);
|
||||
zoneConnection.queuePacket(subPacket, isAuthed, isEncrypted);
|
||||
}
|
||||
|
||||
public Player getActor()
|
||||
|
@ -142,5 +144,11 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
return basePackets;
|
||||
}
|
||||
|
||||
|
||||
public void clearInstance()
|
||||
{
|
||||
actorInstanceList.Clear();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue