mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 15:46:59 +00:00
c55cd66ffc
- Hunter's Book and options window now show a full 'DISABLED.' overlay on realm-gated realms instead of rendering content - Pet training: new rank of an already-known ability is now recognised, announced, and reflected in tooltips - Restore curated 'unique appearance' beast allowlist (34 beasts) in data/init.lua - CHANGELOG updated
20 lines
746 B
Lua
20 lines
746 B
Lua
------------------------------------------------------
|
|
-- MetaHunt: Hunter's Toolkit Addon
|
|
-- A unified addon merging FeedOMatic, Tooltips, and zhunter
|
|
-- Modern modular architecture with legacy addon support
|
|
--
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- TARGET RUNTIME: LUA 5.0 (WoW 1.12 / Twow 1.18)
|
|
-- - Max 32 upvalues per function
|
|
-- - No # operator (use table.getn)
|
|
-- - No string.gmatch (use string.gfind)
|
|
-- - NEVER validate with Lua 5.1+ tools (false passes)
|
|
-- - Errors: check Logs/FrameXML.log first
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
------------------------------------------------------
|
|
|
|
-- Initialize beast database after all files loaded
|
|
if MTH_DS_OnLoad then
|
|
MTH_DS_OnLoad()
|
|
end
|