diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-09-08 21:45:05 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-09-08 21:45:05 +0300 |
commit | 486c83e129d16926093e13d5e037d7eee7f03b91 (patch) | |
tree | 67124ac5eefc1fb82616f7a4abbf1ac87cf07c8a /src/being/being.cpp | |
parent | 0ca85613f16a732ca92cd1b665fe417479c25fe1 (diff) | |
download | plus-486c83e129d16926093e13d5e037d7eee7f03b91.tar.gz plus-486c83e129d16926093e13d5e037d7eee7f03b91.tar.bz2 plus-486c83e129d16926093e13d5e037d7eee7f03b91.tar.xz plus-486c83e129d16926093e13d5e037d7eee7f03b91.zip |
fix delay flag for die sound.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index d773e68ca..9e2bd8f99 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -1206,7 +1206,7 @@ void Being::setAction(const Action &action, const int attackId) currentAction = getDeadAction(); if (mInfo) { - playSfx(mInfo->getSound(SOUND_EVENT_DIE), this, true, mX, mY); + playSfx(mInfo->getSound(SOUND_EVENT_DIE), this, false, mX, mY); if (mType == MONSTER || mType == NPC) mYDiff = mInfo->getDeadSortOffsetY(); } |