From 29c7bc6e323ac7537d474be5da1f182b4f90f119 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 31 Jan 2022 20:46:57 -0500 Subject: update badwords to use its own enum to advoid import jank --- src/lib/common/AutoMod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/common') diff --git a/src/lib/common/AutoMod.ts b/src/lib/common/AutoMod.ts index 8d94dab..24feae0 100644 --- a/src/lib/common/AutoMod.ts +++ b/src/lib/common/AutoMod.ts @@ -378,7 +378,7 @@ export interface BadWordDetails { /** * The severity of the word */ - severity: Severity; + severity: Severity | 1 | 2 | 3; /** * Whether or not to ignore spaces when checking for the word -- cgit