aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--commands/8ball.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/8ball.js b/commands/8ball.js
index 70af773..db0b8d3 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 = {