Slow default chevron animation to 1 per second

dialing.chevron-tick-delay default changed from 4 ticks (0.2s) to 20
ticks (1s) per chevron.
This commit is contained in:
Michael Burgess
2026-08-09 14:23:32 -04:00
parent 8a8faf8ffe
commit 712af607d7
2 changed files with 3 additions and 3 deletions
@@ -46,7 +46,7 @@ public class GateConfig {
this.maxIrisBlocks = cfg.getInt("gate.max-iris-blocks", 200); this.maxIrisBlocks = cfg.getInt("gate.max-iris-blocks", 200);
this.minFrameBlocks = cfg.getInt("gate.min-frame-blocks", 8); this.minFrameBlocks = cfg.getInt("gate.min-frame-blocks", 8);
this.openSeconds = cfg.getInt("dialing.open-seconds", 10); this.openSeconds = cfg.getInt("dialing.open-seconds", 10);
this.chevronTickDelay = cfg.getInt("dialing.chevron-tick-delay", 4); this.chevronTickDelay = cfg.getInt("dialing.chevron-tick-delay", 20);
this.playSounds = cfg.getBoolean("dialing.play-sounds", true); this.playSounds = cfg.getBoolean("dialing.play-sounds", true);
this.defaultNetwork = cfg.getString("network.default-network", "main"); this.defaultNetwork = cfg.getString("network.default-network", "main");
this.linkTimeoutSeconds = cfg.getInt("gate.link-timeout-seconds", 30); this.linkTimeoutSeconds = cfg.getInt("gate.link-timeout-seconds", 30);
+2 -2
View File
@@ -86,8 +86,8 @@ gate:
dialing: dialing:
# Seconds the gate stays open (iris filled) before auto-closing if nobody walks through. # Seconds the gate stays open (iris filled) before auto-closing if nobody walks through.
open-seconds: 10 open-seconds: 10
# Delay in ticks between lighting each chevron during the dial animation. # Delay in ticks between lighting each chevron during the dial animation (20 ticks = 1 second).
chevron-tick-delay: 4 chevron-tick-delay: 20
play-sounds: true play-sounds: true
network: network: