It's weird when I look in the ZoneMonitor I can see something like this.
Lobby(1)
test(2)
But when I go through the roomList in the AS3 client, I get:
0 0 3
0 0 0
Code: Select all
for each(var r:Room in _server.roomManager.getRoomList() ) {
trace(r.playerList.length, room.userList.length, room.userCount);
}