From 2b3c1a0cd5ce1b4a872a67b5fb657b2059ce3317 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Sun, 4 Feb 2024 15:47:28 -0800 Subject: [PATCH] Change config option description --- src/main/java/thedarkcolour/exdeorum/config/EConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/thedarkcolour/exdeorum/config/EConfig.java b/src/main/java/thedarkcolour/exdeorum/config/EConfig.java index e4547dd2..76fd968d 100644 --- a/src/main/java/thedarkcolour/exdeorum/config/EConfig.java +++ b/src/main/java/thedarkcolour/exdeorum/config/EConfig.java @@ -189,7 +189,7 @@ public class EConfig { .comment("The amount of FE/t a tick consumed by the mechanical hammer when crushing a block.") .defineInRange("mechanical_hammer_energy_consumption", 20, 0, Integer.MAX_VALUE); this.sieveIntervalTicks = builder - .comment("The minimum interval ticks between two sifting operation. Only for handy sifting. 0 means no limit.") + .comment("The minimum number of ticks a player must wait between two sifting operations. Only affects sifting by hand. 0 means no limit.") .defineInRange("sieve_interval", 1, 0, Integer.MAX_VALUE); builder.pop(); }