From de45a7364a82cd655aed95089982606e423736b2 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 29 Jul 2020 22:24:28 +0200 Subject: [PATCH] :bug: --- Gwendolyn.py | 1 + funcs/games/blackjack.py | 1 + 2 files changed, 2 insertions(+) diff --git a/Gwendolyn.py b/Gwendolyn.py index 6f98186..8d05f2e 100644 --- a/Gwendolyn.py +++ b/Gwendolyn.py @@ -29,6 +29,7 @@ async def blackjackLoop(channel,gameRound): new_message, allStanding, gamedone = blackjackContinue(str(channel)) if new_message != "": + logThis(new_message) await channel.send(new_message) if gamedone == False: await oldImage.delete() diff --git a/funcs/games/blackjack.py b/funcs/games/blackjack.py index 33bcf6e..d19c798 100644 --- a/funcs/games/blackjack.py +++ b/funcs/games/blackjack.py @@ -121,6 +121,7 @@ def blackjackContinue(channel): message = "All players are standing. The dealer now shows his cards and draws." if data["blackjack games"][channel]["all standing"]: + logThis("All are standing") with open("resources/games/games.json", "w") as f: json.dump(data,f,indent=4)