diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java b/src/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java index df3988cdd..83d6d6b4a 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java @@ -99,8 +99,9 @@ public class CharSprite extends MovieClip implements Tweener.Listener, MovieClip place( ch.pos ); turnTo( ch.pos, Random.Int( Level.LENGTH ) ); - - ch.updateSpriteState(); + + if (parent != null) + ch.updateSpriteState(); } public PointF worldToCamera( int cell ) {