From 1a2c0eec9becd921f8a9d31cc8df7c79b797a3e5 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Thu, 6 Aug 2020 21:02:41 +0200 Subject: [PATCH] :bug: --- funcs/games/money.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/games/money.py b/funcs/games/money.py index d6767c7..d0ad0bd 100644 --- a/funcs/games/money.py +++ b/funcs/games/money.py @@ -23,7 +23,7 @@ def addMoney(user,amount): points = data[user]["money"] data[user]["money"] = points + amount else: - logThis("Error adding money") + data[user]["money"] = amount with open("resources/users.json", "w") as f: json.dump(data,f,indent=4)