Made the 'attempt to call an undefined global' error message improving
more aggressive
This commit is contained in:
parent
c59401c8ff
commit
7a64bdb40f
@ -71,11 +71,9 @@ enhance_error = function(error_message, start_fn, stop_fn)
|
||||
do
|
||||
local fn = error_message:match("attempt to call a nil value %(global '(.*)'%)")
|
||||
if fn then
|
||||
if fn:match("x[0-9A-F][0-9A-F]") then
|
||||
error_message = "The action '" .. tostring(fn:from_lua_id()) .. "' is not defined."
|
||||
end
|
||||
end
|
||||
end
|
||||
local level = 2
|
||||
while true do
|
||||
local calling_fn = debug_getinfo(level)
|
||||
|
@ -50,7 +50,6 @@ enhance_error = (error_message, start_fn, stop_fn)->
|
||||
unless error_message and error_message\match("\x1b")
|
||||
error_message or= ""
|
||||
if fn = error_message\match("attempt to call a nil value %(global '(.*)'%)")
|
||||
if fn\match "x[0-9A-F][0-9A-F]"
|
||||
error_message = "The action '#{fn\from_lua_id!}' is not defined."
|
||||
level = 2
|
||||
while true
|
||||
|
Loading…
Reference in New Issue
Block a user