Server list is now sent from db rather than hard coded.

This commit is contained in:
Filip Maj 2015-09-03 01:02:55 -04:00
parent 091166b41a
commit a65e81273b
3 changed files with 16 additions and 14 deletions

View file

@ -25,11 +25,9 @@ namespace FFXIVClassic_Lobby_Server.packets
[StructLayout(LayoutKind.Sequential)]
public unsafe struct WorldListPacket
{
public UInt64 sequence;
public byte isEndList;
public uint numWorlds;
public byte unknown1;
public ushort unknown2;
public UInt64 sequence;
public uint isEndListANDNumWorlds;
public uint unknown1;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 6)]
public WorldListEntry[] worlds;
}