From bc1ba4480aa924281ff2cc18c5444d7c72dcd4d0 Mon Sep 17 00:00:00 2001 From: Jim-Bim Date: Fri, 15 May 2009 16:29:18 +0000 Subject: [PATCH] AckisRecipeList: - moved original, bc and wotlk filters to the correct place (ace options) --- ARLConfig.lua | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/ARLConfig.lua b/ARLConfig.lua index 12c06e1..aa6817e 100644 --- a/ARLConfig.lua +++ b/ARLConfig.lua @@ -199,30 +199,6 @@ local function giveFilter() get = function() return addon.db.profile.filters.classes.warrior end, set = function() addon.db.profile.filters.classes.warrior = not addon.db.profile.filters.classes.warrior end, }, - originalwow = { - order = 20, - type = "toggle", - name = L["Old World"], - desc = L["ORIGINAL_WOW_DESC"], - get = function() return addon.db.profile.filters.general.originalwow end, - set = function() addon.db.profile.filters.general.originalwow = not addon.db.profile.filters.general.originalwow end, - }, - bc = { - order = 21, - type = "toggle", - name = L["Burning Crusade"], - desc = L["BC_WOW_DESC"], - get = function() return addon.db.profile.filters.general.bc end, - set = function() addon.db.profile.filters.general.bc = not addon.db.profile.filters.general.bc end, - }, - wrath = { - order = 22, - type = "toggle", - name = L["Wrath of the Lich King"], - desc = L["LK_WOW_DESC"], - get = function() return addon.db.profile.filters.general.wrath end, - set = function() addon.db.profile.filters.general.wrath = not addon.db.profile.filters.general.wrath end, - }, }, }, obtain = { @@ -321,6 +297,30 @@ local function giveFilter() get = function() return addon.db.profile.filters.obtain.mobdrop end, set = function() addon.db.profile.filters.obtain.mobdrop = not addon.db.profile.filters.obtain.mobdrop end, }, + originalwow = { + order = 13, + type = "toggle", + name = L["Old World"], + desc = L["ORIGINAL_WOW_DESC"], + get = function() return addon.db.profile.filters.general.originalwow end, + set = function() addon.db.profile.filters.general.originalwow = not addon.db.profile.filters.general.originalwow end, + }, + bc = { + order = 14, + type = "toggle", + name = L["Burning Crusade"], + desc = L["BC_WOW_DESC"], + get = function() return addon.db.profile.filters.general.bc end, + set = function() addon.db.profile.filters.general.bc = not addon.db.profile.filters.general.bc end, + }, + wrath = { + order = 15, + type = "toggle", + name = L["Wrath of the Lich King"], + desc = L["LK_WOW_DESC"], + get = function() return addon.db.profile.filters.general.wrath end, + set = function() addon.db.profile.filters.general.wrath = not addon.db.profile.filters.general.wrath end, + }, } }, binding = { -- 1.7.9.5