diff options
author | Minepolz320 <42765118+Minepolz320@users.noreply.github.com> | 2024-01-28 01:45:22 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 21:45:22 +0100 |
commit | ef3f46cf4db9bda97529de32a805c8015ad40452 (patch) | |
tree | fea4b0b19faed6f2c41f5832a3a4969e19a7c540 /src/main/java/gregtech/loaders/preload/GT_PreLoad.java | |
parent | 3516447b38cbb435a5844c6b35cfe1b21b943815 (diff) | |
download | GT5-Unofficial-ef3f46cf4db9bda97529de32a805c8015ad40452.tar.gz GT5-Unofficial-ef3f46cf4db9bda97529de32a805c8015ad40452.tar.bz2 GT5-Unofficial-ef3f46cf4db9bda97529de32a805c8015ad40452.zip |
GT Tool Fixes and ore balance config (#2453)
* Fixes/balance config
Fixes that the ax and saw do not break ladders
- ability to toggle ore multipliers for ore Nether and End
- sneaking with a scythe/plow allows you to break only 1 block
* Fix copy paste typo
* Revert "Allow tools to break stuff with a lower harvest level (#2435)"
This reverts commit ba1a9b290a09e39b100ff8d9f1f5e70cdc3f0fab.
Diffstat (limited to 'src/main/java/gregtech/loaders/preload/GT_PreLoad.java')
-rw-r--r-- | src/main/java/gregtech/loaders/preload/GT_PreLoad.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java index 823f1b9ef9..42bf79a102 100644 --- a/src/main/java/gregtech/loaders/preload/GT_PreLoad.java +++ b/src/main/java/gregtech/loaders/preload/GT_PreLoad.java @@ -707,6 +707,12 @@ public class GT_PreLoad { GT_Mod.gregtechproxy.mMixedOreOnlyYieldsTwoThirdsOfPureOre = tMainConfig .get("general", "MixedOreOnlyYieldsTwoThirdsOfPureOre", false) .getBoolean(false); + GT_Mod.gregtechproxy.mRichOreYieldMultiplier = tMainConfig.get("general", "RichOreYieldMultiplier", true) + .getBoolean(false); + GT_Mod.gregtechproxy.mNetherOreYieldMultiplier = tMainConfig.get("general", "NetherOreYieldMultiplier", true) + .getBoolean(false); + GT_Mod.gregtechproxy.mEndOreYieldMultiplier = tMainConfig.get("general", "EndOreYieldMultiplier", true) + .getBoolean(false); GT_Mod.gregtechproxy.enableBlackGraniteOres = GregTech_API.sWorldgenFile .get("general", "enableBlackGraniteOres", GT_Mod.gregtechproxy.enableBlackGraniteOres); GT_Mod.gregtechproxy.enableRedGraniteOres = GregTech_API.sWorldgenFile |