From feb8d4340207bfd8e79180ce1daa941e89aa7587 Mon Sep 17 00:00:00 2001 From: ACGaming <4818419+ACGaming@users.noreply.github.com> Date: Mon, 27 May 2024 11:41:10 +0200 Subject: [PATCH] Tweak redwood spawn values --- src/main/java/com/progwml6/natura/common/config/Config.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/progwml6/natura/common/config/Config.java b/src/main/java/com/progwml6/natura/common/config/Config.java index 5e248d54..df7a12a3 100644 --- a/src/main/java/com/progwml6/natura/common/config/Config.java +++ b/src/main/java/com/progwml6/natura/common/config/Config.java @@ -171,6 +171,7 @@ public static boolean syncConfig() flatSeaLevel = prop.getInt(flatSeaLevel); redwoodSpawnRarity = configFile.get(WORLDGEN, "Redwood Tree Spawn Rarity", redwoodSpawnRarity).getInt(redwoodSpawnRarity); + redwoodSpawnRange = configFile.get(WORLDGEN, "Redwood Tree Spawn Range", redwoodSpawnRange).getInt(redwoodSpawnRange); mapleRarity = configFile.get(WORLDGEN, "Maple Tree Spawn Rarity", mapleRarity).getInt(mapleRarity); mapleSpawnRange = configFile.get(WORLDGEN, "Maple Tree Spawn Range", mapleSpawnRange).getInt(mapleSpawnRange); @@ -351,7 +352,7 @@ public static boolean syncConfig() public static boolean generateFusewood = true; public static boolean generateGhostwood = true; - public static int redwoodSpawnRarity = 150; + public static int redwoodSpawnRarity = 200; public static int redwoodSpawnRange = 16; public static int mapleRarity = 10; public static int mapleSpawnRange = 48;