From c181ae710e1292d315448c721ea4e22d1aca874d Mon Sep 17 00:00:00 2001 From: ackis Date: Fri, 27 Feb 2009 19:03:02 +0000 Subject: [PATCH] Let us add mobs and quests to the world/mini-map! --- ARLFrame.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ARLFrame.lua b/ARLFrame.lua index 1065e62..a143a6e 100644 --- a/ARLFrame.lua +++ b/ARLFrame.lua @@ -351,6 +351,10 @@ do -- If it's a vendor check to see if we're displaying it if (v["Type"] == 2) then display = CheckDisplayFaction(filters, vendorDB[v["ID"]]["Faction"]) + elseif (v["Type"] == 3) then + display = CheckDisplayFaction(filters, mobDB[v["ID"]]["Faction"]) + elseif (v["Type"] == 4) then + display = CheckDisplayFaction(filters, questDB[v["ID"]]["Faction"]) end return display -- 1.7.9.5