can input time in seconds
This commit is contained in:
parent
59673a1c9d
commit
7a4cdc7d7d
1 changed files with 3 additions and 3 deletions
|
@ -24,7 +24,7 @@ class borgarCommand extends Command {
|
||||||
],
|
],
|
||||||
description: {
|
description: {
|
||||||
content: 'Make amborgar,,,,,,,,,, ( MINI GAME VERY WIP, NO LEVEL YET )',
|
content: 'Make amborgar,,,,,,,,,, ( MINI GAME VERY WIP, NO LEVEL YET )',
|
||||||
usage: '[number of ingredient] [time in miliseconds]',
|
usage: '[number of ingredient] [time]',
|
||||||
examples: ['4 10000']
|
examples: ['4 10000']
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -41,13 +41,13 @@ class borgarCommand extends Command {
|
||||||
const borgarEmbed = new MessageEmbed()
|
const borgarEmbed = new MessageEmbed()
|
||||||
.setTitle('hamborger delivery')
|
.setTitle('hamborger delivery')
|
||||||
.setDescription(`could you do me an **amborgar** that contain **${hamIngredient}**`)
|
.setDescription(`could you do me an **amborgar** that contain **${hamIngredient}**`)
|
||||||
.setFooter('Level 0 | you have 10 seconds to make that hamborgor')
|
.setFooter(`Level 0 | you have 10 seconds ${args.time} to make that hamborgor`)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
message.channel.send(borgarEmbed);
|
message.channel.send(borgarEmbed);
|
||||||
|
|
||||||
const filter = m => m.content && m.author.id == message.author.id;
|
const filter = m => m.content && m.author.id == message.author.id;
|
||||||
message.channel.awaitMessages(filter, {time: 10000, 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);
|
console.log(hamIngredient + '\n' + userIngredient);
|
||||||
|
|
Loading…
Reference in a new issue