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)