From f1ebfbaa466d030638947e9ab3fcf7d169db6e2e Mon Sep 17 00:00:00 2001 From: "Navy.gif" Date: Wed, 20 Apr 2022 16:00:10 +0300 Subject: [PATCH] .. --- src/structure/interfaces/Inhibitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure/interfaces/Inhibitor.js b/src/structure/interfaces/Inhibitor.js index 06c44a8..d322b3c 100644 --- a/src/structure/interfaces/Inhibitor.js +++ b/src/structure/interfaces/Inhibitor.js @@ -14,7 +14,7 @@ class Inhibitor extends Component { this.name = opts.name; this.guild = Boolean(opts.guild); this.priority = opts.priority || 1; - this.index = `I_${opts.name.toUpperCase()}_ERROR`; + this.index = `INHIBITOR_${opts.name.toUpperCase()}_ERROR`; this.silent = opts.silent === undefined ? false : Boolean(opts.silent); }