Skip to content

Commit c419029

Browse files
committed
reduce default baby spawn chance
1 parent e7dde77 commit c419029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/additions/java/mekanism/additions/common/config/AdditionsConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private SpawnConfig(IMekanismConfig config, ModConfigSpec.Builder builder, Strin
105105
.define("shouldSpawn", true));
106106
this.weightPercentage = CachedDoubleValue.wrap(config, builder.comment("The multiplier for weight of " + name + " spawns, compared to the adult mob.")
107107
.worldRestart()
108-
.defineInRange("weightPercentage", 0.5, 0, 100));
108+
.defineInRange("weightPercentage", 0.05, 0, 100));
109109
this.minSizePercentage = CachedDoubleValue.wrap(config, builder.comment("The multiplier for minimum group size of " + name + " spawns, compared to the adult mob.")
110110
.worldRestart()
111111
.defineInRange("minSizePercentage", 0.5, 0, 100));

0 commit comments

Comments
 (0)