diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index afd3122ab..74a4998dc 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -1233,14 +1233,6 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) m_caster->CastCustomSpell(unitTarget, 37675, &basepoints0, NULL, NULL, true); return; } - case 38194: // Blink - { - // Blink - if (unitTarget) - m_caster->CastSpell(unitTarget, 38203, true); - - return; - } case 39189: // Sha'tari Torch { if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT || m_caster->GetTypeId() != TYPEID_PLAYER) @@ -2306,6 +2298,14 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx) } return; } + case 38194: // Blink + { + // Blink + if (unitTarget) + m_caster->CastSpell(unitTarget, 38203, true); + + return; + } } // Conjure Mana Gem diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d5b7b658b..8fd1550fc 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 "11327" + #define REVISION_NR "11328" #endif // __REVISION_NR_H__