rate can no longer ping roles

This commit is contained in:
Emily 2020-08-16 18:20:26 +10:00
parent 4bbdac7070
commit 3dcdd1f2ad
1 changed files with 17 additions and 16 deletions

View File

@ -3,23 +3,24 @@ exports.run = async (client, message, args) => {
return message.channel.send( return message.channel.send(
`<:error:466995152976871434> What am I meant to rate? Usage: \`${client.commands.get(`rate`).help.usage}\`` `<:error:466995152976871434> What am I meant to rate? Usage: \`${client.commands.get(`rate`).help.usage}\``
); );
var rating = [
"0/10", var rating = [
"1/10", "0/10",
"2/10", "1/10",
"3/10", "2/10",
"4/10", "3/10",
"5/10", "4/10",
"6/10", "5/10",
"7/10", "6/10",
"8/10", "7/10",
"9/10", "8/10",
"10/10" "9/10",
]; "10/10"
];
if (message.content.includes("@everyone") || message.content.includes("@here")) { if (message.content.includes("@everyone") || message.content.includes("@here") || message.content.includes("<@&")) {
return message.channel.send('>:('); return message.channel.send('>:(');
} };
let mess = rating.random(); let mess = rating.random();
message.channel.send(`<:star:618393201501536258> I give ${args.join(" ")} a **${mess}**`); message.channel.send(`<:star:618393201501536258> I give ${args.join(" ")} a **${mess}**`);