aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQAston <none@none>2010-12-06 07:16:39 +0100
committerQAston <none@none>2010-12-06 07:16:39 +0100
commitbb2a715afc810dc3d0307edcf83536a76fcdecc6 (patch)
tree4e9f0ae10d8b8a775e44377b90f2474edb0a856a
parent59d12e3b4af92e397da0c01bc3368bc9e408f606 (diff)
Core/Scripts: Comment out code sanitizing hook type - will be fixed soon.
--HG-- branch : trunk
-rwxr-xr-xsrc/server/game/Spells/SpellScript.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellScript.cpp b/src/server/game/Spells/SpellScript.cpp
index bfa5fc6b8f5..baaeaa3c1fc 100755
--- a/src/server/game/Spells/SpellScript.cpp
+++ b/src/server/game/Spells/SpellScript.cpp
@@ -567,7 +567,8 @@ bool AuraScript::_IsDefaultActionPrevented()
case AURA_SCRIPT_HOOK_EFFECT_PERIODIC:
return m_defaultActionPrevented;
default:
- ASSERT(false && "m_defaultActionPrevented has incorrect value, or AuraScript::_IsDefaultActionPrevented is called in a wrong place");
+ //TOFIX: probably one hook is called from another hook
+ //ASSERT(false && "m_defaultActionPrevented has incorrect value, or AuraScript::_IsDefaultActionPrevented is called in a wrong place");
return false;
}
}