diff options
Diffstat (limited to 'client/menu/lobby.gd')
| -rw-r--r-- | client/menu/lobby.gd | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd index 39199d59..0dca6f4c 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -105,7 +105,7 @@ func select_map(i: int):  	selected_map = i  	var map_data: Dictionary = game.maps[i][1]  	map_name_label.text = map_data["name"] -	map_player_label.text = tr("c.map.players_recommended") % map_data["players"] +	map_player_label.text = tr("c.map.players_recommended").format([map_data["players"]])  	map_difficulty_label.text = tr("c.map.difficulty.%d" % (map_data["difficulty"] - 1))  	selected_map_name = game.maps[i][0]  	if not game.menu.covered:  |