Fix weird bug with maxplayers being float

This commit is contained in:
Alibek Omarov 2020-12-09 20:46:57 +03:00
parent 70c1b50c3f
commit 033bb35e0f
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ class ServerEntry:
elif( split[i] == 'players' ):
self.players = int(key)
elif( split[i] == 'max' ):
self.maxplayers = int(key)
self.maxplayers = int(key.split('.')[0])
elif( split[i] == 'bots' ):
self.bots = int(key)
elif( split[i] == 'map' ):