1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-27 03:35:27 +00:00

Enable built-in script in the integration tests

This commit is contained in:
elsid 2024-07-31 22:34:27 +02:00
parent 54c76203a7
commit f5b24efdca
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625
3 changed files with 4 additions and 3 deletions

View File

@ -1 +0,0 @@
# It is an empty file that overrides builtin.omwscripts and disables builtin scripts

View File

@ -220,7 +220,7 @@ testing.registerLocalTest('findNearestNavMeshPosition',
return {
engineHandlers = {
onUpdate = testing.updateLocal,
onFrame = testing.updateLocal,
},
eventHandlers = testing.eventHandlers
}

View File

@ -181,7 +181,9 @@ end
function M.updateLocal()
if localTestRunner and coroutine.status(localTestRunner) ~= 'dead' then
coroutine.resume(localTestRunner)
if not core.isWorldPaused() then
coroutine.resume(localTestRunner)
end
else
localTestRunner = nil
end