remove number of donated points from message
it's not always true.
This commit is contained in:
parent
cf8376eebc
commit
7e408c1b74
|
@ -54,6 +54,6 @@ def handle_redeem(message, user_id):
|
||||||
elif int(note) > points:
|
elif int(note) > points:
|
||||||
send_chat(f"Can't redeem {redeem}, you don't have enough points.2")
|
send_chat(f"Can't redeem {redeem}, you don't have enough points.2")
|
||||||
elif add_to_milestone(db, user_id, redeem, int(note)):
|
elif add_to_milestone(db, user_id, redeem, int(note)):
|
||||||
send_chat(f"Succesfully donated {int(note)} to {redeem} milestone!")
|
send_chat(f"Succesfully donated to {redeem} milestone!")
|
||||||
else:
|
else:
|
||||||
send_chat(f"{redeem} not redeemed, type of redeem not found.")
|
send_chat(f"{redeem} not redeemed, type of redeem not found.")
|
||||||
|
|
Loading…
Reference in New Issue