diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/being.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/being.cpp b/src/being.cpp index 3d89c71ba..eafc647fc 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -717,6 +717,8 @@ void Being::handleAttack(Being *victim, int damage, if (dir) setDirection(dir); } + if (victim->mType == PLAYER && victim->mAction == SIT) + victim->setAction(STAND); sound.playSfx(mInfo->getSound((damage > 0) ? SOUND_EVENT_HIT : SOUND_EVENT_MISS), mX, mY); |