From b0832d9ef6fd2984dd65a6dff01c5d387e05e52b Mon Sep 17 00:00:00 2001 From: Aevann Date: Wed, 1 Feb 2023 20:41:52 +0200 Subject: [PATCH] update marseybux message --- files/helpers/cron.py | 2 +- files/routes/settings.py | 2 +- files/routes/users.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/files/helpers/cron.py b/files/helpers/cron.py index 22b06878d..aa6368793 100644 --- a/files/helpers/cron.py +++ b/files/helpers/cron.py @@ -122,7 +122,7 @@ def _give_monthly_marseybux_task(): def give_marseybux(u): marseybux_reward = marseybux_li[u.patron] u.pay_account('marseybux', marseybux_reward) - send_repeatable_notification(u.id, f"@AutoJanny has given you {marseybux_reward} Marseybux for the month of {month}! You can use them to buy awards in the [shop](/shop).") + send_repeatable_notification(u.id, f"@AutoJanny has given you {marseybux_reward} Marseybux for the month of {month}! You can use them to buy awards or hats in the [shop](/shop) or gamble them in the [casino](/casino).") for badge in g.db.query(Badge).filter(Badge.badge_id > 20, Badge.badge_id < 28).all(): g.db.delete(badge) diff --git a/files/routes/settings.py b/files/routes/settings.py index 13801d084..d099a5e12 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -428,7 +428,7 @@ def settings_gumroad(v): v.patron = tier v.pay_account('marseybux', marseybux) - send_repeatable_notification(v.id, f"You have received {marseybux} Marseybux! You can use them to buy awards in the [shop](/shop).") + send_repeatable_notification(v.id, f"You have received {marseybux} Marseybux! You can use them to buy awards or hats in the [shop](/shop) or gamble them in the [casino](/casino).") g.db.add(v) diff --git a/files/routes/users.py b/files/routes/users.py index e96e3b4cd..71bb1fee8 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -1292,7 +1292,7 @@ def claim_rewards(v): g.db.add(transaction) v.pay_account('marseybux', marseybux) - send_repeatable_notification(v.id, f"You have received {marseybux} Marseybux! You can use them to buy awards in the [shop](/shop).") + send_repeatable_notification(v.id, f"You have received {marseybux} Marseybux! You can use them to buy awards or hats in the [shop](/shop) or gamble them in the [casino](/casino).") g.db.add(v) if highest_tier > v.patron: