From 35eefc87ef3080987dffecb8d8e5ff6f2fc1eb5c Mon Sep 17 00:00:00 2001 From: KrewsOrg Date: Wed, 11 Sep 2019 11:58:44 +0100 Subject: [PATCH] Fixed Rotation Bug. --- 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 4bf6938e..d8873053 100644 --- a/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java +++ b/src/main/java/com/eu/habbo/habbohotel/rooms/Room.java @@ -4467,7 +4467,7 @@ public class Room implements Comparable, ISerialize, Runnable { } } //Place at new position - double height = this.getStackHeight(tile.x, tile.y, false); + double height = this.getStackHeight(tile.x, tile.y, false, item); if(height > 40d) return FurnitureMovementError.CANT_STACK; item.setX(tile.x); item.setY(tile.y);