This commit is contained in:
Charles 2001-01-23 19:58:19 +00:00
parent f09523467a
commit fe1a61ba0e
5 changed files with 41 additions and 7 deletions

View file

@ -69,10 +69,10 @@ void CNpc::processCloseClamAttack( int _frames )
}
else
{
this->m_controlFunc = NPC_CONTROL_MOVEMENT;
this->m_timerFunc = NPC_TIMER_ATTACK_DONE;
this->m_timerTimer = GameState::getOneSecondInFrames();
this->m_sensorFunc = NPC_SENSOR_NONE;
m_controlFunc = NPC_CONTROL_MOVEMENT;
m_timerFunc = NPC_TIMER_ATTACK_DONE;
m_timerTimer = GameState::getOneSecondInFrames();
m_sensorFunc = NPC_SENSOR_NONE;
}
}
}