Added HunterIDs back for DEV backend.

This commit is contained in:
zkwolf
2024-05-14 12:19:51 +02:00
parent 88ba02252d
commit 1183d13470

View File

@@ -461,8 +461,15 @@ def debug_matchmaking():
len_open_lobbies = matchmaking_queue.get_len_of_open_lobbies()
lobby_data = matchmaking_queue.get_lobby_data()
return render_template('debug/matchmaking.html',
if dev_env == "true":
return render_template('debug/matchmaking.html',
len_queue=len_queue,
len_killed_lobbies=len_killed_lobbies,
len_queued_runners=len_queued_runners,
len_queued_hunters=len_queued_hunters,
len_open_lobbies=len_open_lobbies,
lobby_data=lobby_data)
return render_template('debug/anon_matchmaking.html',
len_queue=len_queue,
len_killed_lobbies=len_killed_lobbies,
len_queued_runners=len_queued_runners,