summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 = {