diff --git a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java index 2153eef6..7aa2d2ba 100644 --- a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java +++ b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java @@ -1633,8 +1633,6 @@ public class Room implements Comparable, ISerialize, Runnable if (tileInFront == null) return true; - if (!InteractionRoller.NO_RULES && roller.getZ() != rollerTile.z) - return true; if (!Room.this.layout.tileExists(tileInFront.x, tileInFront.y)) return true; @@ -1645,9 +1643,6 @@ public class Room implements Comparable, ISerialize, Runnable if (!tileInFront.getAllowStack() && !(tileInFront.isWalkable() || tileInFront.state == RoomTileState.SIT || tileInFront.state == RoomTileState.LAY)) return true; - if (tileInFront.getStackHeight() > Item.getCurrentHeight(roller) + rollerTile.z) - return true; - if (Room.this.hasHabbosAt(tileInFront.x, tileInFront.y)) return true;