aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/menu/play.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/play.gd b/client/menu/play.gd
index 894ea4bc..184b3b2f 100644
--- a/client/menu/play.gd
+++ b/client/menu/play.gd
@@ -74,7 +74,7 @@ func update_server_list(lists: Array[Array]):
for i in l:
var b := Button.new()
b.text_overrun_behavior = TextServer.OVERRUN_TRIM_WORD_ELLIPSIS
- b.text = tr("c.menu.play.list_item").format([i.name, i.players_online])
+ b.text = tr("c.menu.play.list_item").format([i.name, roundi(i.players_online)])
# TODO: Implement fallback address correctly
if i.version[0] != Multiplayer.VERSION_MAJOR or i.version[1] > Multiplayer.VERSION_MINOR:
b.disabled = true