Skip to content

Commit 586f50f

Browse files
Halve the voluntary drop rate, double the plant rate
1 parent dffb05e commit 586f50f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/ferreusveritas/dynamictrees/ModConfigs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ public static void preInit(FMLPreInitializationEvent event) {
2424
Configuration config = new Configuration(event.getSuggestedConfigurationFile());
2525
config.load();
2626

27-
seedDropRate = config.getFloat("dropRate", "seeds", 1f/2f, 0, 1, "The rate at which seeds voluntarily drop from branches");
28-
seedPlantRate = config.getFloat("plantRate", "seeds", 1f/16f, 0, 1, "The rate at which seeds plant themselves in their ideal biomes");
27+
seedDropRate = config.getFloat("dropRate", "seeds", 1f/4f, 0, 1, "The rate at which seeds voluntarily drop from branches");
28+
seedPlantRate = config.getFloat("plantRate", "seeds", 1f/8f, 0, 1, "The rate at which seeds plant themselves in their ideal biomes");
2929
seedTimeToLive = config.getInt("timeToLive", "seeds", 1200, 0, 6000, "Ticks before a seed in the world attempts to plant itself or despawn. 1200 = 1 minute");
3030

3131
treeGrowthRateMultiplier = config.getFloat("growthRateMultiplier", "trees", 1f, 0, 16f, "Factor that multiplies the rate at which trees grow. Use at own risk");

0 commit comments

Comments
 (0)