Skip to content

Commit

Permalink
[9483] Not affect anything but not nice typos...
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirMangos committed Feb 28, 2010
1 parent 82d0a43 commit cf508c9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion src/game/SpellMgr.cpp
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion 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__

2 comments on commit cf508c9

@DarkYodah
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i guess this wasn't meant to type:
Blood Presence and Blood Presence (triggered)
double "Blood Presence"

@DarkYodah
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

woops, sorry i see it already...

Please sign in to comment.