aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpokesudenk <thisis@notarealema.il>2018-02-24 13:59:38 -0500
committerpokesudenk <thisis@notarealema.il>2018-02-24 13:59:38 -0500
commit5bad09948e0a7ef96f8c4d581627acf78558fbda (patch)
treec6c5b467b09979bf137d0d8aec0252cc0714650f
parentc5ec51222c3c2257c02d7531bc36f8dc3ff17cae (diff)
downloadPokeBot-5bad09948e0a7ef96f8c4d581627acf78558fbda.tar.gz
PokeBot-5bad09948e0a7ef96f8c4d581627acf78558fbda.tar.bz2
PokeBot-5bad09948e0a7ef96f8c4d581627acf78558fbda.zip
added back italics
-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 = {