From 70cc69b22a3ec158fdc35bcf843f69475a26f1c8 Mon Sep 17 00:00:00 2001 From: duckietm Date: Tue, 17 Mar 2026 14:08:33 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Small=20fix=20for=20the=20update?= =?UTF-8?q?=20tile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../eu/habbo/threading/runnables/RebugKickBallAction.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Emulator/src/main/java/com/eu/habbo/threading/runnables/RebugKickBallAction.java b/Emulator/src/main/java/com/eu/habbo/threading/runnables/RebugKickBallAction.java index aebc389b..7bc761e9 100644 --- a/Emulator/src/main/java/com/eu/habbo/threading/runnables/RebugKickBallAction.java +++ b/Emulator/src/main/java/com/eu/habbo/threading/runnables/RebugKickBallAction.java @@ -165,15 +165,15 @@ public class RebugKickBallAction implements Runnable { this.dead = true; } - this.room.updateTile(oldTile); - this.room.updateTile(nextTile); - THashSet oldItems = this.room.getItemsAt(oldTile); if (oldItems != null && !oldItems.isEmpty()) { oldItems.remove(this.ball); } this.room.getItemsAt(nextTile).add(this.ball); + this.room.updateTile(oldTile); + this.room.updateTile(nextTile); + this.room.sendComposer(new FloorItemOnRollerComposer( this.ball, null, oldTile, oldZ, nextTile, this.ball.getZ(), 0.0D, this.room ).compose());