diff options
author | megamage <none@none> | 2009-06-07 11:59:50 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-07 11:59:50 -0500 |
commit | 3f81e97ff58a9013fe55f1060f48e3583015e72f (patch) | |
tree | 32a08619c157c38a6e8ca26ff3e4c401b50a540b /src | |
parent | 79b76f10cd7a0b5e299b7e0ff3d01cdd727b893d (diff) |
*Remove a tc1 sql.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Spell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index 8ca1dc6f82a..e861635281e 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2561,7 +2561,7 @@ void Spell::cast(bool skipCheck) if(m_targets.getUnitTarget()) { // three check: prepare, cast (m_casttime > 0), hit (delayed) - if(m_casttime && m_targets.getUnitTarget()->isAlive() && !m_caster->canSeeOrDetect(m_targets.getUnitTarget(), true))) + if(m_casttime && m_targets.getUnitTarget()->isAlive() && !m_caster->canSeeOrDetect(m_targets.getUnitTarget(), true)) { cancel(); return; |