Don't do anything in invokeGlobal if init has not been called

This commit is contained in:
DBotThePony 2024-05-25 19:33:11 +07:00
parent 1d77cf8f98
commit 242f372819
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -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]