diff --git a/modules/PlayerHealth.lua b/modules/PlayerHealth.lua index 3606776..63c7656 100644 --- a/modules/PlayerHealth.lua +++ b/modules/PlayerHealth.lua @@ -1151,6 +1151,10 @@ function PlayerHealth.prototype:CheckPvP() minx, maxx, miny, maxy = 0.05, 0.605, 0.015, 0.57 elseif UnitIsPVP(self.unit) then pvpMode = UnitFactionGroup(self.unit) + + if pvpMode == "Neutral" then + pvpMode = "FFA" + end if pvpMode == "Alliance" then minx, maxx, miny, maxy = 0.07, 0.58, 0.06, 0.57 diff --git a/modules/TargetHealth.lua b/modules/TargetHealth.lua index 55c69e3..309c56f 100644 --- a/modules/TargetHealth.lua +++ b/modules/TargetHealth.lua @@ -994,6 +994,10 @@ function IceTargetHealth.prototype:CheckPvP() elseif UnitIsPVP(self.unit) then pvpMode = UnitFactionGroup(self.unit) + if pvpMode == "Neutral" then + pvpMode = "FFA" + end + if pvpMode == "Alliance" then minx, maxx, miny, maxy = 0.07, 0.58, 0.06, 0.57 else