From 2a1009ea068088ec921a7b2634c507ec30ce9080 Mon Sep 17 00:00:00 2001 From: ackis Date: Tue, 11 Aug 2009 18:31:20 +0000 Subject: [PATCH] Another fix for the PVP flag issue. --- ARLFrame.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ARLFrame.lua b/ARLFrame.lua index 69da53d..8862757 100644 --- a/ARLFrame.lua +++ b/ARLFrame.lua @@ -2253,7 +2253,10 @@ local function expandEntry(dsIndex) tinsert(DisplayStrings, dsIndex, t) dsIndex = dsIndex + 1 end - elseif (v["Type"] == ACQUIRE_VENDOR) and obtainDB.vendor then + -- Right now PVP obtained items are located on vendors so they have the vendor and pvp flag. + -- We need to display the vendor in the drop down if we want to see vendors or if we want to see PVP + -- This allows us to select PVP only and to see just the PVP recipes + elseif (v["Type"] == ACQUIRE_VENDOR) and (obtainDB.vendor or obtainDB.pvp) then local vendor = vendorDB[v["ID"]] if CheckDisplayFaction(filterDB, vendor["Faction"]) then -- 1.7.9.5