Bugfix
This commit is contained in:
parent
284ebf488e
commit
9c6eb5ee4e
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ module.exports = {
|
|||
const permsN = getMessage(c.lang, 'command.help.permsNormal')
|
||||
const permsT = getMessage(c.lang, 'command.help.permsTrusted')
|
||||
const permsO = getMessage(c.lang, 'command.help.permsOwner')
|
||||
if (command.level !== undefined && command.level > verify) {
|
||||
if (command && command.level !== undefined && command.level > verify) {
|
||||
b.tellraw(c.uuid, {
|
||||
text: getMessage(c.lang, 'command.disallowed.perms')
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue