From ddce8ce48d440c3a7b5e68b866aa9c145a25caf9 Mon Sep 17 00:00:00 2001 From: Dank074 Date: Fri, 17 Jul 2020 19:52:40 -0500 Subject: [PATCH] attempt at fixing sitting in high chairs --- src/main/java/com/eu/habbo/habbohotel/rooms/Room.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 82543235..5a9c140b 100644 --- a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java +++ b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java @@ -3570,7 +3570,7 @@ public class Room implements Comparable, ISerialize, Runnable { HabboItem lowestChair = this.getLowestChair(x, y); if (lowestChair != null && lowestChair != exclude) { canStack = true; - height = lowestChair.getZ() + Item.getCurrentHeight(lowestChair); + height = lowestChair.getZ(); } } }