From add7156b9ae4ad4abf6fc615a974a86973da00eb Mon Sep 17 00:00:00 2001 From: Alejandro <25-alejandro@users.noreply.git.krews.org> Date: Sat, 1 Feb 2020 20:29:40 +0200 Subject: [PATCH] Modify default repeater wired delays (credit: kittihab / Kitt Mustang) --- .../items/interactions/wired/triggers/WiredTriggerRepeater.java | 2 +- .../interactions/wired/triggers/WiredTriggerRepeaterLong.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java index d7fd07b4..a0f693c9 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeater.java @@ -21,7 +21,7 @@ import java.util.List; public class WiredTriggerRepeater extends InteractionWiredTrigger implements ICycleable, WiredTriggerReset { public static final WiredTriggerType type = WiredTriggerType.PERIODICALLY; - public static final int DEFAULT_DELAY = 20 * 500; + public static final int DEFAULT_DELAY = 10 * 500; protected int repeatTime = DEFAULT_DELAY; protected int counter = 0; diff --git a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java index 7020988e..ff3f9688 100644 --- a/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java +++ b/src/main/java/com/eu/habbo/habbohotel/items/interactions/wired/triggers/WiredTriggerRepeaterLong.java @@ -20,7 +20,7 @@ import java.util.ArrayList; import java.util.List; public class WiredTriggerRepeaterLong extends InteractionWiredTrigger implements ICycleable, WiredTriggerReset { - public static final int DEFAULT_DELAY = 20 * 5000; + public static final int DEFAULT_DELAY = 10 * 5000; private static final WiredTriggerType type = WiredTriggerType.PERIODICALLY_LONG; private int repeatTime = DEFAULT_DELAY; private int counter = 0;