aboutsummaryrefslogtreecommitdiff
path: root/src/game/Unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r--src/game/Unit.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index c227eece88c..3e09fefdd95 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -283,7 +283,8 @@ void Unit::Update( uint32 p_time )
}
}
- if(!hasUnitState(UNIT_STAT_CASTING))
+ //not implemented before 3.0.2
+ //if(!hasUnitState(UNIT_STAT_CASTING))
{
if(uint32 base_att = getAttackTimer(BASE_ATTACK))
setAttackTimer(BASE_ATTACK, (p_time >= base_att ? 0 : base_att - p_time) );