diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java index 42581c507..e787f3a6a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java @@ -220,7 +220,7 @@ public class CharSprite extends MovieClip implements Tweener.Listener, MovieClip //returns where the center of this sprite will be after it completes any motion in progress public PointF destinationCenter(){ PosTweener motion = this.motion; - if (motion != null){ + if (motion != null && motion.elapsed >= 0){ return new PointF(motion.end.x + width()/2f, motion.end.y + height()/2f); } else { return center();