From 708a5364a97473bc2da1cedd16df47d901fd5d79 Mon Sep 17 00:00:00 2001 From: tommy Date: Mon, 23 Jun 2025 22:38:54 -0400 Subject: [PATCH] Formatting --- src/main.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.lua b/src/main.lua index 5d68a25..0728866 100644 --- a/src/main.lua +++ b/src/main.lua @@ -16,10 +16,10 @@ Client:on('ready', function() end) local function RunCallback(Callback, Interaction, Command, Args) - local Success, Return = pcall(Callback, Interaction, Command, Args) - if not Success then - Interaction:reply('Error encountered when trying to run command: '..tostring(Return), true) - end + local Success, Return = pcall(Callback, Interaction, Command, Args) + if not Success then + Interaction:reply('Error encountered when trying to run command: ' .. tostring(Return), true) + end end Client:on('slashCommand', function(Interaction, Command, Args) @@ -43,4 +43,4 @@ Client:on('userCommand', function(Interaction, Command, Member) end end) -Client:run('Bot '..Token) \ No newline at end of file +Client:run('Bot ' .. Token)