Make lava flow speed configurable

This commit is contained in:
William Blake Galbreath
2025-01-05 16:30:23 -08:00
committed by granny
parent a9125253c6
commit 7556262c59
3 changed files with 17 additions and 40 deletions

View File

@@ -211,8 +211,12 @@ public class PurpurWorldConfig {
}
public int lavaInfiniteRequiredSources = 2;
public int lavaSpeedNether = 10;
public int lavaSpeedNotNether = 30;
private void lavaSettings() {
lavaInfiniteRequiredSources = getInt("blocks.lava.infinite-required-sources", lavaInfiniteRequiredSources);
lavaSpeedNether = getInt("blocks.lava.speed.nether", lavaSpeedNether);
lavaSpeedNotNether = getInt("blocks.lava.speed.not-nether", lavaSpeedNotNether);
}
public boolean turtleEggsBreakFromExpOrbs = false;