diff options
author | p0wer <none@none> | 2009-12-27 18:09:41 -0600 |
---|---|---|
committer | p0wer <none@none> | 2009-12-27 18:09:41 -0600 |
commit | be6b12af367ea03fcf5c603c3901b2e6c1bf9240 (patch) | |
tree | 96a55ec4f9d7399d803a90211cb255f748ec9d04 /src | |
parent | 3cf90a73a55b551ec5feae08887d3f2390790577 (diff) |
Fix whitespace for Flask of the North. Cleanliness and organization = win. =D
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellEffects.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index fdfe43ecab6..2d51c59989b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -885,22 +885,22 @@ void Spell::EffectDummy(uint32 i) m_caster->CastSpell(unitTarget,spell_id,true,NULL); return; } - case 67019: // Flask of the North - { - if (m_caster->GetTypeId() != TYPEID_PLAYER) - return; + case 67019: // Flask of the North + { + if (m_caster->GetTypeId() != TYPEID_PLAYER) + return; - uint32 spell_id; - switch(urand(1, 3)) - { - case 1: spell_id = 67016; break; - case 2: spell_id = 67017; break; - default:spell_id = 67018; break; - } + uint32 spell_id; + switch(urand(1, 3)) + { + case 1: spell_id = 67016; break; + case 2: spell_id = 67017; break; + default:spell_id = 67018; break; + } - m_caster->CastSpell(m_caster, spell_id, true, NULL); - return; - } + m_caster->CastSpell(m_caster, spell_id, true, NULL); + return; + } case 13280: // Gnomish Death Ray { if (!unitTarget) |