summaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-03-30 22:01:53 -0400
committerAlee <alee14498@gmail.com>2018-03-30 22:01:53 -0400
commit99f8fb0ea75559cf0a61a5657ce1d362bdb24355 (patch)
treeee12a0fb1d4f37ad7c029369c70b13ff864da91a /commands
parent975e23ad7fd3c02014e74da4c571df8fe4de3cc7 (diff)
downloadAleeBot-99f8fb0ea75559cf0a61a5657ce1d362bdb24355.tar.gz
AleeBot-99f8fb0ea75559cf0a61a5657ce1d362bdb24355.tar.bz2
AleeBot-99f8fb0ea75559cf0a61a5657ce1d362bdb24355.zip
More changes
Diffstat (limited to 'commands')
-rw-r--r--commands/rps.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/rps.js b/commands/rps.js
index 77c8a53..27f204c 100644
--- a/commands/rps.js
+++ b/commands/rps.js
@@ -35,8 +35,9 @@ module.exports.run = async (client, message) => {
"Paper",
"Scissors",
];
-
- message.channel.sendMessage(rps[Math.floor(Math.random() * rps.length)]);
+
+ message.channel.send(rps[Math.floor(Math.random() * rps.length)]);
+ message.channel.send('Please note that this feature is in **beta** so if you want to help this please do by doing `ab:git`')
};
exports.conf = {