From 8dd5155562093730bfa4bcb775b766ee36f90988 Mon Sep 17 00:00:00 2001 From: medievalshell Date: Thu, 28 May 2026 15:30:33 +0200 Subject: [PATCH] feat: persist `scale` for room ads / branding furni InteractionRoomAds now carries a `scale` default value (100) alongside imageUrl/clickUrl/offsetX/Y/Z, so the image zoom set in the client's position editor is stored and broadcast like the other branding fields. --- .../habbohotel/items/interactions/InteractionRoomAds.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionRoomAds.java b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionRoomAds.java index d37dea17..198df0d5 100644 --- a/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionRoomAds.java +++ b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/InteractionRoomAds.java @@ -29,6 +29,10 @@ public class InteractionRoomAds extends InteractionCustomValues { { this.put("offsetZ", "0"); } + + { + this.put("scale", "100"); + } }; public InteractionRoomAds(ResultSet set, Item baseItem) throws SQLException {