From ff4b642100d1151ecae65745739a501d347944ad Mon Sep 17 00:00:00 2001 From: Aevann1 <59999695+Aevann1@users.noreply.github.com> Date: Wed, 1 Sep 2021 12:47:11 +0200 Subject: [PATCH] Update users.py --- files/routes/users.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/users.py b/files/routes/users.py index 815112ffc9..4247d67075 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -41,7 +41,7 @@ def steal(v): if int(time.time()) - v.created_utc < 604800: return "You must have an account older than 1 week in order to attempt stealing." if v.coins < 5000: - return "You must have more than 100 coins in order to attempt stealing." + return "You must have more than 5000 coins in order to attempt stealing." u = get_account(253) if random.randint(1, 10) < 5: v.coins += 700