An Amulet compiler patch causes this to not crash.
This commit is contained in:
parent
4852cffa0a
commit
ce17f86c41
9 changed files with 3283 additions and 488 deletions
2814
build/oot/main.lua
Normal file
2814
build/oot/main.lua
Normal file
File diff suppressed because it is too large
Load diff
23
build/ootAI.lua
Normal file
23
build/ootAI.lua
Normal file
|
@ -0,0 +1,23 @@
|
|||
package.path = GetScriptsDir() .. "oot/main.lua"
|
||||
local main = require("main")
|
||||
|
||||
function onScriptStart()
|
||||
main.onScriptStart()
|
||||
end
|
||||
|
||||
function onScriptCancel()
|
||||
main.onScriptCancel()
|
||||
end
|
||||
|
||||
function onScriptUpdate()
|
||||
main.onScriptUpdate()
|
||||
end
|
||||
|
||||
function onStateLoaded()
|
||||
main.onStateLoaded()
|
||||
end
|
||||
|
||||
function onStateSaved()
|
||||
main.onStateSaved()
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue