gffg
This commit is contained in:
parent
2763267f87
commit
40cf902a3e
1 changed files with 3 additions and 2 deletions
|
@ -36,7 +36,7 @@ def pay_rent(v):
|
||||||
|
|
||||||
|
|
||||||
@app.post("/steal")
|
@app.post("/steal")
|
||||||
@auth_required
|
@is_not_banned
|
||||||
def steal(v):
|
def steal(v):
|
||||||
if int(time.time()) - v.created_utc < 604800:
|
if int(time.time()) - v.created_utc < 604800:
|
||||||
return "You must have an account older than 1 week in order to stealing."
|
return "You must have an account older than 1 week in order to stealing."
|
||||||
|
@ -56,7 +56,8 @@ def steal(v):
|
||||||
v.ban(days=1, reason="Failed thief")
|
v.ban(days=1, reason="Failed thief")
|
||||||
g.db.add(v)
|
g.db.add(v)
|
||||||
u = get_account(253)
|
u = get_account(253)
|
||||||
send_notification(NOTIFICATIONS_ACCOUNT, u, f"@{v.username} has failed to steal coins from you and has been banned for 1 day!")
|
send_notification(NOTIFICATIONS_ACCOUNT, u, f"@{v.username} has failed to steal coins from you and has been jailed by the authorities for 1 day")
|
||||||
|
send_notification(NOTIFICATIONS_ACCOUNT, v, f"The authorities have caught you, you have been banned for 1 day")
|
||||||
return "", 204
|
return "", 204
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue