From bc90e438b8222de7665d247829f7c002f939fb8b Mon Sep 17 00:00:00 2001 From: Allen Faure Date: Tue, 14 Jan 2025 01:09:03 -0600 Subject: [PATCH] fix --- WeakAurasOptions/LoadOptions.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeakAurasOptions/LoadOptions.lua b/WeakAurasOptions/LoadOptions.lua index 86887f099c..0342506671 100644 --- a/WeakAurasOptions/LoadOptions.lua +++ b/WeakAurasOptions/LoadOptions.lua @@ -128,7 +128,7 @@ function OptionsPrivate.ConstructOptions(prototype, data, startorder, triggernum local function appendPath(base, ...) local path = CopyTable(base) for i = 1, select("#", ...) do - table.insert(path, select(i, ...)) + table.insert(path, (select(i, ...))) end return path end