Quantcast

fixed issue with the pvp flag filter.

pompachomp [07-30-09 - 09:45]
fixed issue with the pvp flag filter.
Filename
ARLConfig.lua
AckisRecipeList.lua
diff --git a/ARLConfig.lua b/ARLConfig.lua
index 6c0c834..c2671ee 100644
--- a/ARLConfig.lua
+++ b/ARLConfig.lua
@@ -274,7 +274,7 @@ local function giveFilter()
 							get		= function() return addon.db.profile.filters.obtain.vendor end,
 							set		= function() addon.db.profile.filters.obtain.vendor = not addon.db.profile.filters.obtain.vendor end,
 						},
-						PVP = {
+						pvp = {
 							order	= 9,
 							type	= "toggle",
 							name	= L["PVP"],
diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua
index 59d5c7b..9ebacf4 100644
--- a/AckisRecipeList.lua
+++ b/AckisRecipeList.lua
@@ -1288,7 +1288,7 @@ do
 		end

 		-- Display PVP recipes
-		if (obtaindb.PVP == true) and (flags[9] == true) then
+		if (obtaindb.pvp == true) and (flags[9] == true) then
 			return true
 		end