mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 22:44:36 +02:00
World list packet fixes, and worked on reserve packet.
This commit is contained in:
parent
e7e267bd44
commit
6c869353cc
3 changed files with 6 additions and 5 deletions
|
@ -37,9 +37,9 @@ namespace FFXIVClassic_Lobby_Server.packets
|
|||
//Write List Info
|
||||
binWriter.Write((UInt64)0);
|
||||
binWriter.Write(worldList.Count - totalCount <= 6 ? (byte)(worldList.Count + 1) : (byte)0);
|
||||
binWriter.Write(worldList.Count - totalCount <= 6 ? (UInt32)worldList.Count - totalCount : (UInt32)6);
|
||||
binWriter.Write((byte)0);
|
||||
binWriter.Write((UInt16)0);
|
||||
binWriter.Write(worldList.Count - totalCount <= 6 ? (UInt32)(worldList.Count - totalCount) : (UInt32)6);
|
||||
binWriter.Write((byte)6);
|
||||
binWriter.Write((UInt16)5);
|
||||
}
|
||||
|
||||
//Write Entries
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue