From d3fbe8f538f52256b9fc446732b60084aad2721b Mon Sep 17 00:00:00 2001 From: Daniel Brown Date: Tue, 24 Sep 2019 16:07:18 -0500 Subject: Note Type Correction - In the database, notes were being listed as "warnings" despite having a type specifically for them. Changed it so that notes are now listed as the proper type. Signed-off-by: Daniel Brown --- bot/cogs/moderation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/cogs/moderation.py b/bot/cogs/moderation.py index 4d651bef7..f2ff7e6b2 100644 --- a/bot/cogs/moderation.py +++ b/bot/cogs/moderation.py @@ -430,7 +430,7 @@ class Moderation(Scheduler, Cog): This does not send the user a notification """ - infraction = await post_infraction(ctx, user, type="warning", reason=reason, hidden=True) + infraction = await post_infraction(ctx, user, type="note", reason=reason, hidden=True) if infraction is None: return -- cgit v1.2.3