This commit is contained in:
2024-09-27 18:00:42 -04:00
parent f12f2a8c4e
commit b28c49f342
2 changed files with 1 additions and 11 deletions

View File

@ -18,9 +18,6 @@ end)
local function RunCallback(Callback, Interaction, Command, Args)
local Success, Return = pcall(Callback, Interaction, Command, Args)
if not Success then
if type(Return) == "table" then
table.foreach(Return, print)
end
Interaction:reply('Error encountered when trying to run command: '..tostring(Return), true)
end
end