diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/8ball.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/8ball.js b/commands/8ball.js index cb085b3..70af773 100644 --- a/commands/8ball.js +++ b/commands/8ball.js @@ -24,7 +24,7 @@ exports.run = async (bot, msg, args) => { 'Very doubtful', ]; - msg.channel.send(':8ball ' + (responses[Math.floor(Math.random() * responses.length)])); + msg.channel.send(':8ball: ' + (responses[Math.floor(Math.random() * responses.length)])); }; exports.conf = { |
