cangstudent
Results
1
comments of
cangstudent
```lua -- Reimplemented pcall function _G.pcall = function(func, ...) local results = table.pack( xpcall(func, function(err) -- Do nothing here, just return the error object return err..'\n'..debug.traceback() end, ...) ) local...