diff --git a/sql/updates/9482_01_mangos_spell_proc_event.sql b/sql/updates/9482_01_mangos_spell_proc_event.sql index d8f6984f116..35edd54ce57 100644 --- a/sql/updates/9482_01_mangos_spell_proc_event.sql +++ b/sql/updates/9482_01_mangos_spell_proc_event.sql @@ -1,8 +1,5 @@ ALTER TABLE db_version CHANGE COLUMN required_9477_01_mangos_spell_proc_event required_9482_01_mangos_spell_proc_event bit; --- (48266) Blood Presence () -DELETE FROM `spell_proc_event` WHERE `entry` IN (50689); - -- (63611) Improved Blood Presence () DELETE FROM `spell_proc_event` WHERE `entry` IN (63611); INSERT INTO `spell_proc_event` VALUES diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index c65a4f31ae0..f804f6ca4c1 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1754,7 +1754,7 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons if (spellInfo_1->SpellIconID == 2633 && spellInfo_2->SpellIconID == 2633) return false; - // Unholy Presence and Unholy Presence (triggered) + // Blood Presence and Blood Presence (triggered) if (spellInfo_1->SpellIconID == 2636 && spellInfo_2->SpellIconID == 2636) return false; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d4432cc1941..21fe44b7ff3 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 "9482" + #define REVISION_NR "9483" #endif // __REVISION_NR_H__