Jump to content

Recommended Posts

Posted

DummyEffect was implemented wrong (http://getmangos.eu/community/topic/15814/targeteffectselect-in-effectteleportunits-ikiss-blink-effectdummy/).

Spell has SPELLFAMILY_MAGE and not GENERIC.

diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index b974967..b2d60d0 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -1166,14 +1166,6 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
                    m_caster->CastCustomSpell(unitTarget, spell_id, NULL, 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)
@@ -1443,6 +1435,14 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)
                    }
                    return;
                }
+                case 38194:                                 // Blink
+                {
+                    // Blink
+                    if (unitTarget)
+                        m_caster->CastSpell(unitTarget, 38203, true);
+
+                    return;
+                }
            }
            break;
        }

greetings, DaC

  • 41 years later...
Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use