This commit is contained in:
Emily 2020-10-26 08:13:03 +11:00
parent e7a22c443e
commit 43aa62f870

View file

@ -81,9 +81,9 @@ class MessageHandler {
); );
// Return if the command is restricted to developers (and the user is not a developer) // Return if the command is restricted to developers (and the user is not a developer)
if (command.devOnly === true && this.client.functions.isDeveloper(message.author.id) !== true) { if (command.devOnly === true && this.client.functions.isDeveloper(message.author.id) === true) {
return message.channel.createMessage( return message.channel.createMessage(
this.client.constants.emojis.permError + ' This command\'s usage is restricted to developers only. Sorry!' `${this.client.constants.emojis.permError} ${message.author.username} is not in the sudoers file. This incident will be reported.`
); );
} }