compat(lua50): fix Options tab tables {...} typo to {}

QuestieOptions.tabs.{auto,dbm,icons,nameplate} were initialized with {...}
instead of {}. At file scope in Lua 5.1 this silently captures the addon
varargs into the table; in Lua 5.0 it is a parse error. All sibling tabs use
{}. No behavioral change (Initialize repopulates the table).
This commit is contained in:
Xurkon
2026-06-12 18:36:59 -05:00
parent 9dce126735
commit 0aaffce1e9
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ local QuestieDBMIntegration = QuestieLoader:ImportModule("QuestieDBMIntegration"
---@type l10n
local l10n = QuestieLoader:ImportModule("l10n")
QuestieOptions.tabs.dbm = {...}
QuestieOptions.tabs.dbm = {}
local optionsDefaults = QuestieOptionsDefaults:Load()