i forgot lmao

This commit is contained in:
Emily 2020-10-29 12:57:17 +11:00
parent d99716d89a
commit 6cc0535bda

View file

@ -81,7 +81,7 @@ 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.config.ownerIDs.includes(message.author.id) !== true) {
return message.channel.createMessage( return message.channel.createMessage(
`${this.client.constants.emojis.permError} ${message.author.username} is not in the sudoers file. This incident will be reported.` `${this.client.constants.emojis.permError} ${message.author.username} is not in the sudoers file. This incident will be reported.`
); );