mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
14 lines
No EOL
447 B
Lua
14 lines
No EOL
447 B
Lua
-- Initialize GameMasterUI Data modules
|
|
-- This file ensures data modules are loaded in the correct order
|
|
|
|
-- Load EnchantmentData module
|
|
local success, err = pcall(function()
|
|
local EnchantmentData = require("GameMasterUI_EnchantmentData")
|
|
_G.EnchantmentData = EnchantmentData
|
|
end)
|
|
|
|
if not success then
|
|
print("[GameMasterUI] ERROR: Failed to load EnchantmentData module: " .. tostring(err))
|
|
end
|
|
|
|
-- Data modules initialization complete |