From c0d71598ba263c91d7281f7fb2ae4f557d3a65f6 Mon Sep 17 00:00:00 2001 From: Travis Spomer <16262858+TravisSpomer@users.noreply.github.com> Date: Sun, 5 May 2024 14:36:35 -0700 Subject: [PATCH] Fix Cata weights being cleared --- Pawn.lua | 6 +++--- Readme.htm | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Pawn.lua b/Pawn.lua index 43a1362..2cfb1d6 100644 --- a/Pawn.lua +++ b/Pawn.lua @@ -3171,16 +3171,16 @@ function PawnCorrectScaleErrors(ScaleName) ThisScale.Multistrike = nil -- These were introduced in Classic versions. - if not (VgerCore.IsClassic or VgerCore.IsBurningCrusade or VgerCore.IsWrath) then + if not (VgerCore.IsClassic or VgerCore.IsBurningCrusade or VgerCore.IsWrath or VgerCore.IsCataclysm) then ThisScale.SpellPenetration = nil end - if not (VgerCore.IsBurningCrusade or VgerCore.IsWrath) then + if not (VgerCore.IsBurningCrusade or VgerCore.IsWrath or VgerCore.IsCataclysm) then ThisScale.ExpertiseRating = nil ThisScale.ResilienceRating = nil end -- Spell power appeared in Wrath but disappeared again later. - if not VgerCore.IsWrath or VgerCore.IsCataclysm then + if not (VgerCore.IsWrath or VgerCore.IsCataclysm) then ThisScale.SpellPower = nil end diff --git a/Readme.htm b/Readme.htm index 82874a3..a454d80 100644 --- a/Readme.htm +++ b/Readme.htm @@ -309,7 +309,8 @@

Incompatible addons

Updates

Version 2.9.1

Version 2.9.0