From dc930c086e15a779c15098b43a1f1247c094c57c Mon Sep 17 00:00:00 2001 From: DuckieTM Date: Sat, 21 Mar 2026 15:28:03 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Small=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WiredConditionHabboHasHandItem.java | 8 ------- .../habbohotel/wired/core/WiredManager.java | 24 ------------------- 2 files changed, 32 deletions(-) diff --git a/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/conditions/WiredConditionHabboHasHandItem.java b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/conditions/WiredConditionHabboHasHandItem.java index 3377ee9a..d949e4bd 100644 --- a/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/conditions/WiredConditionHabboHasHandItem.java +++ b/Emulator/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/conditions/WiredConditionHabboHasHandItem.java @@ -164,14 +164,6 @@ public class WiredConditionHabboHasHandItem extends InteractionWiredCondition { return (value == QUANTIFIER_ANY) ? QUANTIFIER_ANY : QUANTIFIER_ALL; } - protected int getHandItem() { - return this.handItem; - } - - protected int getUserSource() { - return this.userSource; - } - static class JsonData { int handItemId; int userSource; diff --git a/Emulator/src/main/java/com/eu/habbo/habbohotel/wired/core/WiredManager.java b/Emulator/src/main/java/com/eu/habbo/habbohotel/wired/core/WiredManager.java index ea74bb62..a9cb8753 100644 --- a/Emulator/src/main/java/com/eu/habbo/habbohotel/wired/core/WiredManager.java +++ b/Emulator/src/main/java/com/eu/habbo/habbohotel/wired/core/WiredManager.java @@ -442,30 +442,6 @@ public final class WiredManager { return handleEvent(event); } - /** - * Trigger a long periodic timer. - */ - public static boolean triggerTimerRepeatLong(Room room, HabboItem timerItem) { - if (!isEnabled() || room == null) { - return false; - } - - WiredEvent event = WiredEvents.timerRepeatLong(room, timerItem); - return handleEvent(event); - } - - /** - * Trigger a short periodic timer. - */ - public static boolean triggerTimerRepeatShort(Room room, HabboItem timerItem) { - if (!isEnabled() || room == null) { - return false; - } - - WiredEvent event = WiredEvents.timerRepeatShort(room, timerItem); - return handleEvent(event); - } - /** * Trigger game start. */