mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Server list is now sent from db rather than hard coded.
This commit is contained in:
@@ -206,8 +206,9 @@ namespace FFXIVClassic_Lobby_Server
|
||||
world.address = address;
|
||||
world.port = port;
|
||||
world.listPosition = listPosition;
|
||||
uint result = ((numChars / maxChars) *0xFF) & 0xFF;
|
||||
uint result = (uint)(((float)numChars / (float)maxChars) * (float)100);
|
||||
world.population = (ushort)result;
|
||||
|
||||
world.isActive = isActive;
|
||||
worldList.Add(world);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user