From 9080311b4c5ebd3349c0a997b4a5a90ee64e0e9f Mon Sep 17 00:00:00 2001 From: Anthony M <47640864+IDeletedSystem64@users.noreply.github.com> Date: Fri, 5 Feb 2021 01:33:25 -0600 Subject: [PATCH] Fix "unexpected end of input" on startup (8ball) --- commands/8ball.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/8ball.js b/commands/8ball.js index 7ac5ef3..096fb04 100644 --- a/commands/8ball.js +++ b/commands/8ball.js @@ -36,4 +36,6 @@ module.exports = { } ] }; - message.channel.send({ embed }); \ No newline at end of file + message.channel.send({ embed }); + } +} \ No newline at end of file