commit d28546c60095248a4750ee06ff7ba918d33b1cb5 parent 5dd2a30e92402b23567e8ee4de17ade94ea5fe0a Author: Demonstrandum <moi@knutsen.co> Date: Wed, 18 Mar 2020 19:07:02 +0000 Merge branch 'master' of github.com:Demonstrandum/Simp-O-Matic Diffstat:
M | lib/commands/8ball.ts | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/commands/8ball.ts b/lib/commands/8ball.ts @@ -34,5 +34,5 @@ export default home_scope => { "You may rely on it.", ]; - message.answer(":8ball:\s" + responses[Math.floor(Math.random() * responses.length)]); + message.answer(":8ball: " + responses[Math.floor(Math.random() * responses.length)]); };