mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-27 08:50:51 +01:00
Merge branch 'fixed-delays-value' into 'master'
Fixed the default value of the repeat effects See merge request morningstar/Arcturus-Community!93
This commit is contained in:
commit
95d41203cb
@ -19,7 +19,7 @@ import java.util.List;
|
|||||||
|
|
||||||
public class WiredTriggerRepeater extends InteractionWiredTrigger implements ICycleable {
|
public class WiredTriggerRepeater extends InteractionWiredTrigger implements ICycleable {
|
||||||
public static final WiredTriggerType type = WiredTriggerType.PERIODICALLY;
|
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 repeatTime = DEFAULT_DELAY;
|
||||||
protected int counter = 0;
|
protected int counter = 0;
|
||||||
|
@ -18,7 +18,7 @@ import java.util.ArrayList;
|
|||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class WiredTriggerRepeaterLong extends InteractionWiredTrigger implements ICycleable {
|
public class WiredTriggerRepeaterLong extends InteractionWiredTrigger implements ICycleable {
|
||||||
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 static final WiredTriggerType type = WiredTriggerType.PERIODICALLY_LONG;
|
||||||
private int repeatTime = DEFAULT_DELAY;
|
private int repeatTime = DEFAULT_DELAY;
|
||||||
private int counter = 0;
|
private int counter = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user