Added ingredients
This commit is contained in:
parent
db642cbd76
commit
bd8effb93b
1 changed files with 3 additions and 3 deletions
|
@ -32,10 +32,10 @@ class borgarCommand extends Command {
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
if (args.time <= 0) args.time = 1;
|
if (args.time <= 0) args.time = 1;
|
||||||
const ingredient = [ 'bun', 'beef', 'salade', 'tomato', 'cheese', 'pickle'];
|
const ingredients = [ 'bun', 'beef', 'salade', 'tomato', 'cheese', 'pickle', 'onion', 'garlic', 'basil'];
|
||||||
let hamIngredient = [];
|
let hamIngredient = [];
|
||||||
for (let i = 0; i < args.ingredientNumber; i++) {
|
for (let i = 0; i < args.ingredientNumber; i++) {
|
||||||
hamIngredient[i] = ingredient[Math.floor( Math.random() * ingredient.length )];
|
hamIngredient[i] = ingredients[Math.floor( Math.random() * ingredients.length )];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ class borgarCommand extends Command {
|
||||||
message.channel.awaitMessages(filter, {time: args.time * 1000, errors: ['time'] })
|
message.channel.awaitMessages(filter, {time: args.time * 1000, errors: ['time'] })
|
||||||
.catch(collected => {
|
.catch(collected => {
|
||||||
let userIngredient = collected.map(collected => collected.content);
|
let userIngredient = collected.map(collected => collected.content);
|
||||||
console.log(hamIngredient + '\n' + userIngredient);
|
|
||||||
if (userIngredient.toString().toLowerCase() == hamIngredient.toString()) {
|
if (userIngredient.toString().toLowerCase() == hamIngredient.toString()) {
|
||||||
return message.reply('u won bro,,,, that\'s kinda epic if i do say so myself');
|
return message.reply('u won bro,,,, that\'s kinda epic if i do say so myself');
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue