forked from Supositware/Haha-Yes
Say the pic/vid number
This commit is contained in:
parent
49224db7a7
commit
b386608936
2 changed files with 2 additions and 2 deletions
|
@ -13,6 +13,6 @@ module.exports = class BadmemeCommand extends Command {
|
|||
run(message) {
|
||||
const number = 12;
|
||||
const picNumber = Math.floor (Math.random() * (number - 1 + 1)) + 1;
|
||||
message.channel.send(responseObject[picNumber]);
|
||||
message.channel.send(`${picNumber}: ${responseObject[picNumber]}`);
|
||||
}
|
||||
};
|
|
@ -13,6 +13,6 @@ module.exports = class DespacitoCommand extends Command {
|
|||
run(message) {
|
||||
const number = 5;
|
||||
const vidNumber = Math.floor (Math.random() * (number - 1 + 1)) + 1;
|
||||
message.channel.send(responseObject[vidNumber]);
|
||||
message.channel.send(`${vidNumber}: ${responseObject[vidNumber]}`);
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue