summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/being/being.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 23e4da309..0e1fbbc2f 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -1889,8 +1889,6 @@ void Being::drawEmotion(Graphics *const graphics,
{
const int px = getPixelX() - offsetX - mapTileSize / 2;
const int py = getPixelY() - offsetY - mapTileSize * 2 - mapTileSize;
- if (mEmotionSprite)
- mEmotionSprite->draw(graphics, px, py);
if (mAnimationEffect)
mAnimationEffect->draw(graphics, px, py);
if (mShowBadges && mBadgesCount)
@@ -1934,6 +1932,8 @@ void Being::drawEmotion(Graphics *const graphics,
// x += 16;
}
}
+ if (mEmotionSprite)
+ mEmotionSprite->draw(graphics, px, py);
}
void Being::drawSpeech(const int offsetX, const int offsetY)