This commit is contained in:
Charles 2001-07-16 14:19:10 +00:00
parent fd5ed94bae
commit 911c868e99
4 changed files with 40 additions and 21 deletions

View file

@ -778,7 +778,7 @@ void CNpcMotherJellyfishEnemy::processShot( int _frames )
{
case NPC_GENERIC_HIT_CHECK_HEALTH:
{
if ( m_health > 0 )
if ( m_health > 5 )
{
m_health -= 5;
@ -790,6 +790,7 @@ void CNpcMotherJellyfishEnemy::processShot( int _frames )
}
else
{
m_health = 0;
m_state = MOTHER_JELLYFISH_BEGIN_CIRCLE;
}