fix(aurora): fixed the Note
moderation type handler using cls.string
instead of cls.verb
This commit is contained in:
parent
101d364241
commit
064784c9d7
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class Note(Type):
|
|||
@classmethod
|
||||
async def handler(cls, ctx: commands.Context, target: Member | User, silent: bool, reason: str) -> 'Note':
|
||||
response = await ctx.send(
|
||||
content=f"{target.mention} has {cls.embed_desc}{cls.string}!\n**Reason** - `{reason}`"
|
||||
content=f"{target.mention} has {cls.embed_desc}{cls.verb}!\n**Reason** - `{reason}`"
|
||||
)
|
||||
|
||||
if silent is False:
|
||||
|
|
Loading…
Reference in a new issue