From fbb0bfd3ec9d284f5db4c16b87e8e18a0cfdb235 Mon Sep 17 00:00:00 2001 From: Parnic Date: Sun, 19 Sep 2010 21:29:07 +0000 Subject: [PATCH] - nuked the HungerForBlood module if the user is on a 4.0+ client since the ability is going away --- modules/HungerForBlood.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/HungerForBlood.lua b/modules/HungerForBlood.lua index 3d10075..828f3d7 100644 --- a/modules/HungerForBlood.lua +++ b/modules/HungerForBlood.lua @@ -227,6 +227,6 @@ end local _, unitClass = UnitClass("player") -- Load us up -if unitClass == "ROGUE" then +if unitClass == "ROGUE" and IceHUD.WowVer < 40000 then IceHUD.HungerForBlood = HungerForBlood:new() end