From 48384ef229be52d63e3fb0abd1f057b200c4aec5 Mon Sep 17 00:00:00 2001 From: tommy Date: Fri, 27 Sep 2024 17:49:28 -0400 Subject: [PATCH] this caused a crash somehow lol --- src/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.lua b/src/main.lua index 191ff3c..110f925 100644 --- a/src/main.lua +++ b/src/main.lua @@ -18,7 +18,7 @@ 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: '..Return, true) + Interaction:reply('Error encountered when trying to run command: '..tostring(Return), true) end end