diff options
-rw-r--r-- | sql/updates/world/2011_07_15_05_world_spell_bonus_data.sql | 1 | ||||
-rwxr-xr-x | src/server/game/Spells/Auras/SpellAuras.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/sql/updates/world/2011_07_15_05_world_spell_bonus_data.sql b/sql/updates/world/2011_07_15_05_world_spell_bonus_data.sql new file mode 100644 index 00000000000..4fab7dec63f --- /dev/null +++ b/sql/updates/world/2011_07_15_05_world_spell_bonus_data.sql @@ -0,0 +1 @@ +UPDATE `spell_bonus_data` SET `direct_bonus` = 0.564 WHERE `entry` = 64844; diff --git a/src/server/game/Spells/Auras/SpellAuras.cpp b/src/server/game/Spells/Auras/SpellAuras.cpp index 73384dd7f6b..9331351ff55 100755 --- a/src/server/game/Spells/Auras/SpellAuras.cpp +++ b/src/server/game/Spells/Auras/SpellAuras.cpp @@ -1661,7 +1661,7 @@ void Aura::HandleAuraSpecificMods(AuraApplication const* aurApp, Unit* caster, b target->CastSpell(target, 61261, true); else if (frostPresenceAura) { - int32 basePoints0=frostPresenceAura->GetAmount(); + int32 basePoints0 = frostPresenceAura->GetAmount(); target->CastCustomSpell(target, 61261, &basePoints0, NULL, NULL, true, 0, frostPresenceAura); } // Unholy Presence bonus |