Remove overdose key after overdose check (#94)

This commit is contained in:
Levi
2024-03-28 15:04:06 +01:00
committed by GitHub
parent 2c4d2a87a3
commit 57e541f3af

View File

@@ -31,6 +31,8 @@ async def determine_coins_overdose(p, coins):
if coins > max_game_coins:
return True
await p.server.redis.delete(overdose_key)
return False