From 40570ee112cffa4397f4b0915fd7b40bb15cf00b Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Mon, 3 Feb 2020 20:18:30 +0300 Subject: [PATCH] noteid: fix a bug where it wouldn't work --- cogs/mod_note.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/mod_note.py b/cogs/mod_note.py index df943e4..9f407f1 100644 --- a/cogs/mod_note.py +++ b/cogs/mod_note.py @@ -25,7 +25,7 @@ class ModNote(Cog): """Adds a note to a user by userid, staff only.""" userlog(target, ctx.author, note, "notes") - await ctx.send(f"{target.mention}: noted!") + await ctx.send(f"{ctx.author.mention}: noted!") def setup(bot):