From ee055544220f84681b7f1770b24b3d547f7f24f3 Mon Sep 17 00:00:00 2001 From: "Johnny C. Lam" Date: Wed, 23 Oct 2013 07:20:26 +0000 Subject: [PATCH] Rename the parameter to add a spell to a list from "list" to "addlist". This fixes a collision between this new meaning and the original meaning, which was to check whether "list=X item=Y" matches a list named "X" having value "Y". git-svn-id: svn://svn.curseforge.net/wow/ovale/mainline/trunk@1106 d5049fe3-3747-40f7-a4b5-f36d6801af5f --- OvaleCompile.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OvaleCompile.lua b/OvaleCompile.lua index 6b5108c..218fb63 100644 --- a/OvaleCompile.lua +++ b/OvaleCompile.lua @@ -357,7 +357,7 @@ local function ParseSpellInfo(params) si.duration = si.duration + v elseif k == "addcd" then si.cd = si.cd + v - elseif k == "list" then + elseif k == "addlist" then -- Add this buff to the named spell list. if not OvaleData.buffSpellList[v] then OvaleData.buffSpellList[v] = {} -- 1.7.9.5