aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Spells/SpellEffects.cpp
diff options
context:
space:
mode:
authorSorikoff <46191832+Sorikoff@users.noreply.github.com>2019-06-22 07:44:23 +0000
committerGiacomo Pozzoni <giacomopoz@gmail.com>2019-06-22 09:44:23 +0200
commit40b09e3df144304562a63f33d16e25bbde5079fd (patch)
treee4a36cf45b6abe9605d7970cbcd74af2191e1daa /src/server/game/Spells/SpellEffects.cpp
parent8163ea60c8d517ebe3a88f595dd8291df8338811 (diff)
Scripts/Spells: Ultra-Advanced Proto-Typical Shortening Blaster (#23456)
* Scripts/Spells: Ultra-Advanced Proto-Typical Shortening Blaster * Fix NoPCH * Correct header * fixup! Clean up * Rename 9999_99_99_99_world.sql to 2019_06_22_00_world.sql
Diffstat (limited to 'src/server/game/Spells/SpellEffects.cpp')
-rw-r--r--src/server/game/Spells/SpellEffects.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp
index 0bb9c013324..3f277336e4b 100644
--- a/src/server/game/Spells/SpellEffects.cpp
+++ b/src/server/game/Spells/SpellEffects.cpp
@@ -3699,33 +3699,6 @@ void Spell::EffectScriptEffect(SpellEffIndex effIndex)
}
return;
}
- case 45668: // Ultra-Advanced Proto-Typical Shortening Blaster
- {
- if (!unitTarget || unitTarget->GetTypeId() != TYPEID_UNIT)
- return;
-
- static uint32 const spellPlayer[5] =
- {
- 45674, // Bigger!
- 45675, // Shrunk
- 45678, // Yellow
- 45682, // Ghost
- 45684 // Polymorph
- };
-
- static uint32 const spellTarget[5] =
- {
- 45673, // Bigger!
- 45672, // Shrunk
- 45677, // Yellow
- 45681, // Ghost
- 45683 // Polymorph
- };
-
- m_caster->CastSpell(m_caster, spellPlayer[urand(0, 4)], true);
- unitTarget->CastSpell(unitTarget, spellTarget[urand(0, 4)], true);
- break;
- }
}
break;
}