Skip to content

Commit

Permalink
Fix formatting and remove variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed Jul 6, 2017
1 parent e214967 commit be366ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/game/Spells/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -811,14 +811,14 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)

return;
}
case 8606: //Summon Cyclonian
case 8606: //Summon Cyclonian
{
if (!(m_targets.m_targetMask & TARGET_FLAG_DEST_LOCATION))
return;

float x, y, z;
m_targets.getDestination(x, y, z); // database loaded coordinates due to target type
Creature* pCreature = m_caster->SummonCreature(6239, x, y, z, 0.0f, TEMPSUMMON_TIMED_OOC_DESPAWN, 30 * IN_MILLISECONDS);
m_caster->SummonCreature(6239, x, y, z, 0.0f, TEMPSUMMON_TIMED_OOC_DESPAWN, 30 * IN_MILLISECONDS);

return;
}
Expand Down

0 comments on commit be366ed

Please sign in to comment.