Mount display issue

fixes #275
Not really needed but enables some cool stuff
This commit is contained in:
Sam 2013-07-02 23:16:11 +02:00
parent c8185474de
commit 987c6d6c91
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ void Creature::internalDrawOutfit(Point dest, float scaleFactor, bool animateWal
dest -= datType->getDisplacement() * scaleFactor;
datType->draw(dest, scaleFactor, 0, xPattern, 0, 0, animationPhase, lightView);
dest += getDisplacement() * scaleFactor;
zPattern = 1;
zPattern = std::min(1, getNumPatternZ() - 1);
}
PointF jumpOffset = m_jumpOffset * scaleFactor;