Don't do anything in invokeGlobal if init has not been called
This commit is contained in:
parent
1d77cf8f98
commit
242f372819
@ -284,7 +284,7 @@ class LuaEnvironment : StateContext {
|
||||
}
|
||||
|
||||
fun invokeGlobal(name: String, vararg arguments: Any?): Array<Any?> {
|
||||
if (errorState)
|
||||
if (errorState || !initCalled)
|
||||
return arrayOf()
|
||||
|
||||
val load = globals[name]
|
||||
|
Loading…
Reference in New Issue
Block a user