Add missing break.

This commit is contained in:
Night Owl 2017-12-18 00:28:37 +05:00
parent d38e8b8179
commit 8c2c7cc77c
3 changed files with 3 additions and 3 deletions

View File

@ -319,8 +319,8 @@ void CFGrunt::HandleAnimEvent( MonsterEvent_t *pEvent )
SENTENCEG_PlayRndSz( ENT( pev ), "FG_ALERT", HGRUNT_SENTENCE_VOLUME, GRUNT_ATTN, 0, m_voicePitch );
JustSpoke();
}
}
break;
default:
CSquadMonster::HandleAnimEvent( pEvent );
break;

View File

@ -302,8 +302,8 @@ void CNGrunt::HandleAnimEvent( MonsterEvent_t *pEvent )
SENTENCEG_PlayRndSz( ENT( pev ), "NG_ALERT", HGRUNT_SENTENCE_VOLUME, GRUNT_ATTN, 0, m_voicePitch );
JustSpoke();
}
}
break;
default:
CSquadMonster::HandleAnimEvent( pEvent );
break;

View File

@ -346,8 +346,8 @@ void CZGrunt::HandleAnimEvent( MonsterEvent_t *pEvent )
SENTENCEG_PlayRndSz( ENT( pev ), "ZG_ALERT", HGRUNT_SENTENCE_VOLUME, GRUNT_ATTN, 0, m_voicePitch );
JustSpoke();
}
}
break;
default:
CSquadMonster::HandleAnimEvent( pEvent );
break;