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 6a850015..02ae5d28 100644 --- a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java +++ b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java @@ -4333,7 +4333,7 @@ public class Room implements Comparable, ISerialize, Runnable } HabboItem lowestChair = this.getLowestChair(x, y); - if(lowestChair != null) { + if(lowestChair != null && lowestChair != exclude) { canStack = true; height = lowestChair.getZ() + Item.getCurrentHeight(lowestChair); }