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. */