From d355e7887bf034fbc2e8bd68eb5ce9d752511863 Mon Sep 17 00:00:00 2001 From: Conatum Date: Sun, 19 Sep 2021 13:45:03 +0300 Subject: [PATCH] fix (workout): Incorrect notification reward. --- bot/modules/workout/tracker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/modules/workout/tracker.py b/bot/modules/workout/tracker.py index ddf1c9d8..037888e1 100644 --- a/bot/modules/workout/tracker.py +++ b/bot/modules/workout/tracker.py @@ -142,7 +142,7 @@ async def workout_complete(member, workout): embed = discord.Embed( description=( "Congratulations on completing your daily workout!\n" - "You have been rewarded with `350` LionCoins. Good job!" + "You have been rewarded with `{}` LionCoins. Good job!".format(reward) ), timestamp=dt.datetime.utcnow(), colour=discord.Color.orange()