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); }