mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Reworked zones to allow for isolated zones (IE Opening Zone) and private area instances.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user