diff options
author | click <click@gonnamakeyou.com> | 2012-02-18 16:52:08 +0100 |
---|---|---|
committer | click <click@gonnamakeyou.com> | 2012-02-18 16:52:08 +0100 |
commit | 5411e1ce522b5a6f0faf2575fb96157bedeb5454 (patch) | |
tree | 28c9340987d224e8921ca7a9c5cb85e73eec6f45 /src/server/scripts/Examples | |
parent | da5027ef3a4b7c89cb51841902dc3525c6c199f8 (diff) |
Core: Clean up whitespace and tabs in the base sourcetree
Diffstat (limited to 'src/server/scripts/Examples')
-rw-r--r-- | src/server/scripts/Examples/example_spell.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Examples/example_spell.cpp b/src/server/scripts/Examples/example_spell.cpp index b1a8f17d16a..71dbd7f4fb0 100644 --- a/src/server/scripts/Examples/example_spell.cpp +++ b/src/server/scripts/Examples/example_spell.cpp @@ -93,14 +93,14 @@ class spell_ex_5581 : public SpellScriptLoader void HandleAfterCast() { sLog->outString("All immediate actions for the spell are finished now"); - // this is a safe for triggering additional effects for a spell without interfering + // this is a safe for triggering additional effects for a spell without interfering // with visuals or with other effects of the spell //GetCaster()->CastSpell(target, SPELL_TRIGGERED, true); } SpellCastResult CheckRequirement() { - // in this hook you can add additional requirements for spell caster (and throw a client error if reqs're not passed) + // in this hook you can add additional requirements for spell caster (and throw a client error if reqs're not passed) // in this case we're disallowing to select non-player as a target of the spell //if (!GetTargetUnit() || GetTargetUnit()->ToPlayer()) //return SPELL_FAILED_BAD_TARGETS; |