eluna-scripts-ornfelt/lua/Eluna-scripts/AIO Scripts/GameMasterUI/Server/Data/init.lua
2026-02-24 16:53:17 +01:00

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