diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 0a6891c2e..a9f55de79 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -7726,7 +7726,7 @@ bool Unit::isSpellCrit(Unit *pVictim, SpellEntry const *spellProto, SpellSchoolM // taken if (pVictim) { - if (!IsPositiveSpell(spellProto->Id) + if (!IsPositiveSpell(spellProto->Id)) { // Modify critical chance by victim SPELL_AURA_MOD_ATTACKER_SPELL_CRIT_CHANCE crit_chance += pVictim->GetTotalAuraModifierByMiscMask(SPELL_AURA_MOD_ATTACKER_SPELL_CRIT_CHANCE, schoolMask); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 01a0133b1..d24f5ee13 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7244" + #define REVISION_NR "7245" #endif // __REVISION_NR_H__