diff --git a/jarvis/client.py b/jarvis/client.py index 85c9e3e..591fba8 100644 --- a/jarvis/client.py +++ b/jarvis/client.py @@ -176,7 +176,7 @@ class Jarvis(Snake): ] embed = build_embed( title="Command Invoked", - description=f"{ctx.author.mention} invoked a command", + description=f"{ctx.author.mention} invoked a command in {ctx.channel.mention}", fields=fields, color="#fc9e3f", ) @@ -440,7 +440,7 @@ class Jarvis(Snake): ] embed = build_embed( title="Message Edited", - description=f"{after.author.mention} edited a message", + description=f"{after.author.mention} edited a message in {before.channel.mention}", fields=fields, color="#fc9e3f", timestamp=after.edited_timestamp, @@ -514,7 +514,7 @@ class Jarvis(Snake): channel = message.guild.get_channel(modlog.value) embed = build_embed( title="Message Deleted", - description=f"{message.author.mention}'s message was deleted", + description=f"{message.author.mention}'s message was deleted from {message.channel.mention}", fields=fields, color="#fc9e3f", )