diff --git a/core/src/main/assets/rot_lasher.png b/core/src/main/assets/rot_lasher.png index 325a73cdd..823498b0e 100644 Binary files a/core/src/main/assets/rot_lasher.png and b/core/src/main/assets/rot_lasher.png differ diff --git a/core/src/main/assets/tiles_prison.png b/core/src/main/assets/tiles_prison.png index 0b9989349..996f82cb1 100644 Binary files a/core/src/main/assets/tiles_prison.png and b/core/src/main/assets/tiles_prison.png differ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonLevel.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonLevel.java index 0596dcc34..1ca15f009 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonLevel.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/levels/PrisonLevel.java @@ -195,11 +195,11 @@ public class PrisonLevel extends RegularLevel { this.pos = pos; PointF p = DungeonTilemap.tileCenterToWorld( pos ); - pos( p.x - 1, p.y + 3, 2, 0 ); + pos( p.x - 1, p.y + 2, 2, 0 ); pour( FlameParticle.FACTORY, 0.15f ); - add( new Halo( 16, 0xFFFFCC, 0.2f ).point( p.x, p.y ) ); + add( new Halo( 12, 0xFFFFCC, 0.4f ).point( p.x, p.y + 1 ) ); } @Override