Modify default repeater wired delays (credit: kittihab / Kitt Mustang)

This commit is contained in:
Alejandro 2020-02-01 20:29:40 +02:00
parent 9561c0b073
commit add7156b9a
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;