mirror of
https://github.com/Technicolor-creamsicle/Osselbot.git
synced 2024-11-19 10:45:54 -05:00
fix?
This commit is contained in:
parent
a3dde7383a
commit
a8abbd0174
@ -145,13 +145,14 @@ client.on("message", async message => {
|
|||||||
const sayMessage = args.join(" ");
|
const sayMessage = args.join(" ");
|
||||||
if (message.member.roles.cache.some(r=>["Admin","Mods","Member of the Order","Botmeister","Ally of the Order","say"].includes(r.name)) ){
|
if (message.member.roles.cache.some(r=>["Admin","Mods","Member of the Order","Botmeister","Ally of the Order","say"].includes(r.name)) ){
|
||||||
if(message.content.includes("@"));{
|
if(message.content.includes("@"));{
|
||||||
|
return message.reply("haha no")
|
||||||
|
}
|
||||||
// Then we delete the command message (sneaky, right?). The catch just ignores the error with a cute smiley thing.
|
// Then we delete the command message (sneaky, right?). The catch just ignores the error with a cute smiley thing.
|
||||||
// eslint-disable-next-line no-unused-vars
|
// eslint-disable-next-line no-unused-vars, no-unreachable
|
||||||
message.delete().catch(O_o=>{});
|
message.delete().catch(O_o=>{});
|
||||||
// And we get the bot to say the thing:
|
// And we get the bot to say the thing:
|
||||||
|
// eslint-disable-next-line no-unreachable
|
||||||
return message.channel.send(sayMessage);
|
return message.channel.send(sayMessage);
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user