summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-08-15 22:10:48 +0200
committertpart <tpart120@proton.me>2024-08-15 22:10:48 +0200
commita48be8a864fd809523eb6d3e96d4284f1189ceed (patch)
tree7edff62efeafeceb4e263324df462cdd239505f1
parent08a12454107c6be38fcc476e820f18ad71cef68e (diff)
downloadhurrycurry-a48be8a864fd809523eb6d3e96d4284f1189ceed.tar
hurrycurry-a48be8a864fd809523eb6d3e96d4284f1189ceed.tar.bz2
hurrycurry-a48be8a864fd809523eb6d3e96d4284f1189ceed.tar.zst
Do not display test or customer bot algorithms
-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()