Skip to content

Commit 0c62700

Browse files
WorldGen by default. The people have spoken.
1 parent 06c2583 commit 0c62700

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,22 @@ public class ModConfigs {
2121
public static void preInit(FMLPreInitializationEvent event) {
2222
Configuration config = new Configuration(event.getSuggestedConfigurationFile());
2323
config.load();
24-
24+
2525
seedDropRate = config.getFloat("dropRate", "seeds", 1f/2f, 0, 1, "The rate at which seeds voluntarily drop from branches");
2626
seedPlantRate = config.getFloat("plantRate", "seeds", 1f/16f, 0, 1, "The rate at which seeds plant themselves in their ideal biomes");
2727
seedTimeToLive = config.getInt("timeToLive", "seeds", 1200, 0, 6000, "Ticks before a seed in the world attempts to plant itself or despawn. 1200 = 1 minute");
28-
28+
2929
treeGrowthRateMultiplier = config.getFloat("growthRateMultiplier", "trees", 1f, 0, 16f, "Factor that multiplies the rate at which trees grow. Use at own risk");
3030
treeHarvestMultiplier = config.getFloat("harvestMultiplier", "trees", 1f, 0f, 128f, "Factor that multiplies the wood returned from harvesting a tree. You cheat.");
3131
ignoreBiomeGrowthRate = config.getBoolean("ignoreBiomeGrowthRate", "trees", false, "If enabled all trees grow as if they are in their native biome");
3232
diseaseChance = config.getFloat("diseaseChance", "trees", 0.0f, 0.0f, 1.0f, "The chance of a tree on depleted soil to die. 1/256(~0.004) averages to about 1 death every 16 minecraft days");
33-
33+
3434
replaceVanillaSapling = config.getBoolean("replaceVanillaSapling", "vanilla", false, "Right clicking with a vanilla sapling places a dynamic sapling instead.");
3535

3636
vineGen = config.getBoolean("vineGen", "world", true, "Randomly generate vines on jungle trees.");
3737
podzolGen = config.getBoolean("podzolGen", "world", true, "Randomly generate podzol under select trees.");
38-
worldGen = config.getBoolean("worldGen", "world", false, "Experimental world generation. Generate Dynamic Trees instead of Vanilla trees.");
39-
38+
worldGen = config.getBoolean("worldGen", "world", true, "World Generation produces Dynamic Trees instead of Vanilla trees.");
39+
4040
worldGenDebug = config.getBoolean("worldGenDebug", "debug", false, "Enable to mark tree spawn locations with wool circles.");
4141

4242
config.save();

0 commit comments

Comments
 (0)