From 24849a9418997dd8391a1dab7c10f97d4b0d7846 Mon Sep 17 00:00:00 2001 From: piair Date: Wed, 9 Nov 2022 22:59:12 +0100 Subject: [PATCH] finally fixed --- V4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/V4.py b/V4.py index 9b88c6b..a73d697 100755 --- a/V4.py +++ b/V4.py @@ -598,7 +598,7 @@ def LogPoint(account="unknown"): # log des points sur discord if CLAIM_AMAZON and int(points) >= 7500: if (claim_amazon() == 1) : - points -= 7500 + points = str( int(points) - 7500) if sql_enabled : add_to_database(account, points, sql_host, sql_usr, sql_pwd, sql_database)