This commit is contained in:
Alex Brow 2020-02-27 22:33:01 -05:00
parent 1254e773df
commit 4ae768e37b
No known key found for this signature in database
GPG Key ID: F48926893F475C25
1 changed files with 2 additions and 1 deletions

View File

@ -307,9 +307,10 @@ client.on("message", async message => {
return message.channel.send(quotes[number])
}
if (command === "fix") {
if(!message.member.roles.some(r=>["Botmeister"].includes(r.name))) {
if(message.member.roles.some(r=>["Botmeister"].includes(r.name))) {
return message.reply("I guess it\'s my fault will fix.");
};
return;
};
});