summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/menu/lobby.gd3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd
index f1cf7fb6..5136798d 100644
--- a/client/menu/lobby.gd
+++ b/client/menu/lobby.gd
@@ -80,6 +80,9 @@ func initialize():
select_map(0)
for algo_id: String in game.bot_algos:
+ if algo_id == "customer" or algo_id == "test":
+ continue
+
bot_counts[algo_id] = 0
var h := HBoxContainer.new()