From 5a912f7966416c8fd92e1c4a9fe51186716df8ae Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 24 Feb 2023 22:20:31 +0200 Subject: [PATCH] clearer error message --- files/routes/casino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/casino.py b/files/routes/casino.py index eb797eca6..375c9bda7 100644 --- a/files/routes/casino.py +++ b/files/routes/casino.py @@ -38,7 +38,7 @@ def casino_game_page(v:User, game): game_state = '' if game == 'blackjack': - abort(403, "Disabled temporarily!") + abort(403, "Disabled temporarily to fix exploit!") if get_active_twentyone_game(v): game_state = json.dumps(get_active_twentyone_game_state(v))