From 8a5fa6c4415a387d650c9471fcd98a2f36e7286d Mon Sep 17 00:00:00 2001 From: AlexCatze Date: Tue, 3 Jan 2023 18:11:43 +0100 Subject: [PATCH] Make flowers enabled by default (#22) PR like #21 but for flowers. This will helpful to players, who using this fork of botania outside of any modpacks. This will not affect GTNH modpack(and other modpacks) because they are alredy have Botania.cfg. Also in config descripton sayed that this option should be 2 by default: "The quantity of Botania flower patches to generate in the world, defaults to 2, the lower the number the less patches generate.". --- .../java/vazkii/botania/common/core/handler/ConfigHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/vazkii/botania/common/core/handler/ConfigHandler.java b/src/main/java/vazkii/botania/common/core/handler/ConfigHandler.java index 78d2c65559..03bdf005e7 100644 --- a/src/main/java/vazkii/botania/common/core/handler/ConfigHandler.java +++ b/src/main/java/vazkii/botania/common/core/handler/ConfigHandler.java @@ -94,7 +94,7 @@ public final class ConfigHandler { public static int harvestLevelWeight = 2; public static int harvestLevelBore = 3; - public static int flowerQuantity = 0; + public static int flowerQuantity = 2; public static int flowerDensity = 2; public static int flowerPatchSize = 6; public static int flowerPatchChance = 16;