Skip to content

Commit

Permalink
Tweak redwood spawn values
Browse files Browse the repository at this point in the history
  • Loading branch information
ACGaming committed May 27, 2024
1 parent 6db0506 commit feb8d43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/progwml6/natura/common/config/Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit feb8d43

Please sign in to comment.