diff options
author | Malcrom <malcromdev@gmail.com> | 2013-12-25 14:16:55 -0330 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2013-12-25 14:16:55 -0330 |
commit | fe95371d9a8b485d3028a8d0bf1481e2cae20c1c (patch) | |
tree | 06d779ebef57d1e94cabb7f4f868dade0a3e67e2 /src/server/scripts/Examples | |
parent | fa29ddc529ab43d43353c83578772758bcf264c4 (diff) |
Core/Scripting: Replace casted with cast as casted is not a word.
Diffstat (limited to 'src/server/scripts/Examples')
-rw-r--r-- | src/server/scripts/Examples/example_spell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Examples/example_spell.cpp b/src/server/scripts/Examples/example_spell.cpp index 2c76d9a40b0..af028d539f0 100644 --- a/src/server/scripts/Examples/example_spell.cpp +++ b/src/server/scripts/Examples/example_spell.cpp @@ -220,7 +220,7 @@ class spell_ex_66244 : public SpellScriptLoader // we initialize local variables if needed bool Load() OVERRIDE { - // do not load script if aura is casted by player or caster not avalible + // do not load script if aura is cast by player or caster not avalible if (Unit* caster = GetCaster()) if (caster->GetTypeId() == TYPEID_PLAYER) return true; |