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()); diff --git a/Latest_Compiled_Version/Habbo-4.0.5-jar-with-dependencies.jar b/Latest_Compiled_Version/Habbo-4.0.5-jar-with-dependencies.jar index 1ee1c0ae..d6619f96 100644 Binary files a/Latest_Compiled_Version/Habbo-4.0.5-jar-with-dependencies.jar and b/Latest_Compiled_Version/Habbo-4.0.5-jar-with-dependencies.jar differ