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 3e55ed05..6a850015 100644 --- a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java +++ b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java @@ -850,7 +850,7 @@ public class Room implements Comparable, ISerialize, Runnable if(item != null) { - if(item.getBaseItem().allowSit()) + if(item.getBaseItem().allowSit() || item.getBaseItem().allowLay()) { habbo.getRoomUnit().setZ(item.getZ()); habbo.getRoomUnit().setPreviousLocationZ(item.getZ()); @@ -859,11 +859,6 @@ public class Room implements Comparable, ISerialize, Runnable else { habbo.getRoomUnit().setZ(item.getZ() + Item.getCurrentHeight(item)); - - if (item.getBaseItem().allowLay()) - { - habbo.getRoomUnit().setStatus(RoomUnitStatus.LAY, (item.getZ() + Item.getCurrentHeight(item)) + ""); - } } } else