NSMonster: only respect "sequence" on monsters when they're flagged as dead.
This commit is contained in:
parent
c829d0453e
commit
5bb9fbf3af
1 changed files with 1 additions and 1 deletions
|
@ -1441,7 +1441,7 @@ NSMonster::Physics(void)
|
||||||
if (!IsAlive)
|
if (!IsAlive)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (m_flForceSequence) {
|
if (_m_bStartDead && m_flForceSequence) {
|
||||||
if (m_iSequenceState != SEQUENCESTATE_IDLE) {
|
if (m_iSequenceState != SEQUENCESTATE_IDLE) {
|
||||||
SetFrame(m_flForceSequence);
|
SetFrame(m_flForceSequence);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue