Fix weird bug with maxplayers being float
This commit is contained in:
parent
70c1b50c3f
commit
033bb35e0f
|
@ -34,7 +34,7 @@ class ServerEntry:
|
||||||
elif( split[i] == 'players' ):
|
elif( split[i] == 'players' ):
|
||||||
self.players = int(key)
|
self.players = int(key)
|
||||||
elif( split[i] == 'max' ):
|
elif( split[i] == 'max' ):
|
||||||
self.maxplayers = int(key)
|
self.maxplayers = int(key.split('.')[0])
|
||||||
elif( split[i] == 'bots' ):
|
elif( split[i] == 'bots' ):
|
||||||
self.bots = int(key)
|
self.bots = int(key)
|
||||||
elif( split[i] == 'map' ):
|
elif( split[i] == 'map' ):
|
||||||
|
|
Loading…
Reference in New Issue