Port to Ascension 3.3.5 client

- Interface: 11200 -> 30300, add -coa1 version suffix and CoA metadata
  in VanillaGuide.toc.
- Local-shadow arg = {...} inside Di/Dv debug helpers in Core.lua so
  vararg access works under Lua 5.1 (WoW 3.3.5) instead of Lua 5.0
  (WoW 1.12).
- Add README-CoA.md documenting fork rationale, patched files, and
  remaining TODO (in-game smoke test, MetaMap -> pfQuest retarget,
  CoA-custom content slot, dynamic-scaling picker UX).
This commit is contained in:
2026-05-11 21:48:40 +02:00
parent 57f1a7e3b5
commit 828a99a085
3 changed files with 71 additions and 7 deletions
+2
View File
@@ -39,6 +39,7 @@ debug_verbose = false
do
function Di(...)
if debug_info then
local arg = {...}
for k, v in pairs(arg) do arg[k] = tostring(v) end
local s = table.concat(arg, ", ")
s = string.gsub(s, "([=:]),", "%1")
@@ -48,6 +49,7 @@ do
end
function Dv(...)
if debug_verbose then
local arg = {...}
for k, v in pairs(arg) do arg[k] = tostring(v) end
local s = table.concat(arg, ", ")
s = string.gsub(s, "([=:]),", "%1")