mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-01-11 15:38:12 +00:00
Change ideal monster state in MonsterUse only if monster is idle
This commit is contained in:
parent
201206ccfd
commit
d86b0bf480
@ -571,7 +571,8 @@ void CBaseMonster::MonsterThink( void )
|
||||
//=========================================================
|
||||
void CBaseMonster::MonsterUse( CBaseEntity *pActivator, CBaseEntity *pCaller, USE_TYPE useType, float value )
|
||||
{
|
||||
m_IdealMonsterState = MONSTERSTATE_ALERT;
|
||||
if (m_MonsterState == MONSTERSTATE_IDLE)
|
||||
m_IdealMonsterState = MONSTERSTATE_ALERT;
|
||||
}
|
||||
|
||||
//=========================================================
|
||||
|
Loading…
Reference in New Issue
Block a user