diff options
Diffstat (limited to '')
-rw-r--r-- | src/bossTopman.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bossTopman.cpp b/src/bossTopman.cpp index 77593a3..424f1a3 100644 --- a/src/bossTopman.cpp +++ b/src/bossTopman.cpp @@ -538,7 +538,7 @@ void daDreidel::updateModelMatrices() { int done = SmoothRotation(&this->rot.y, amt, 0x800); if(done) { - if (this->damage > 1) { doStateChange(&StateID_ChargePrep); } + if (this->damage > 0) { doStateChange(&StateID_ChargePrep); } else { doStateChange(&StateID_Walk); } } } @@ -565,7 +565,7 @@ void daDreidel::updateModelMatrices() { bodyModel._vf1C(); if(this->chrAnimation.isAnimationDone()) { - if (this->damage > 1) { doStateChange(&StateID_ChargePrep); } + if (this->damage > 0) { doStateChange(&StateID_ChargePrep); } else { doStateChange(&StateID_Walk); } } |