diff options
-rw-r--r-- | bot/cogs/moderation.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 987f5fa5b..f31e5c183 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -414,9 +414,9 @@ class Moderation(Scheduler): return if reason is None: - result_message = f":ok_hand: warned {user.mention}." + result_message = f":ok_hand: note added for {user.mention}." else: - result_message = f":ok_hand: warned {user.mention} ({reason})." + result_message = f":ok_hand: note added for {user.mention} ({reason})." await ctx.send(result_message) |