Change config option description

This commit is contained in:
thedarkcolour 2024-02-04 15:47:28 -08:00 committed by GitHub
parent 04019e9fd0
commit 2b3c1a0cd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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();
}