Fix ask command description
This commit is contained in:
parent
008eccece3
commit
c4d6370ea1
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ const randomNumber = require("../../util/randomNumber");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: 'ask',
|
name: 'ask',
|
||||||
description: 'Repeats arguments',
|
description: 'Randomly answer with Yes, or No',
|
||||||
execute({message}) {
|
execute({message}) {
|
||||||
let answer = randomNumber(0, 1) === 1 ? "Yes" : "No";
|
let answer = randomNumber(0, 1) === 1 ? "Yes" : "No";
|
||||||
message.channel.send(answer)
|
message.channel.send(answer)
|
||||||
|
|
Loading…
Add table
Reference in a new issue