This commit is contained in:
Igor Timofeev
2019-01-19 16:30:43 +03:00
parent c593b7b74d
commit 9bfcfcc8ae
2 changed files with 2 additions and 2 deletions

2
OS.lua
View File

@@ -51,7 +51,7 @@ function require(module)
if package.loaded[lowerModule] then
return package.loaded[lowerModule]
elseif package.loading[lowerModule] then
error("recursive require() call found: library \"" .. module .. "\" is trying to require another library that requires it")
error("recursive require() call found: library \"" .. module .. "\" is trying to require another library that requires it\n" .. debug.traceback())
else
local errors = {}