openmw/scripts/data/morrowind_tests/global.lua

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
509 B
Lua
Raw Permalink Normal View History

2024-05-10 10:11:17 +02:00
local testing = require('testing_util')
local util = require('openmw.util')
local world = require('openmw.world')
local core = require('openmw.core')
local types = require('openmw.types')
if not core.contentFiles.has('Morrowind.esm') then
error('This test requires Morrowind.esm')
end
2025-02-26 23:12:17 +01:00
require('global_issues')
require('global_dialogues')
require('global_mwscript')
2024-05-10 10:11:17 +02:00
return {
engineHandlers = {
2025-02-26 23:12:17 +01:00
onUpdate = testing.makeUpdateGlobal(),
2024-05-10 10:11:17 +02:00
},
2025-02-26 23:18:07 +01:00
eventHandlers = testing.globalEventHandlers,
2024-05-10 10:11:17 +02:00
}