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 = {
|
||||
name: 'ask',
|
||||
description: 'Repeats arguments',
|
||||
description: 'Randomly answer with Yes, or No',
|
||||
execute({message}) {
|
||||
let answer = randomNumber(0, 1) === 1 ? "Yes" : "No";
|
||||
message.channel.send(answer)
|
||||
|
|
Loading…
Add table
Reference in a new issue