From ce18dbe46019b78a3d65d7e56663762e8def4490 Mon Sep 17 00:00:00 2001 From: IntegerLimit <103940576+IntegerLimit@users.noreply.github.com> Date: Fri, 3 Feb 2023 17:51:53 +1100 Subject: [PATCH] Certus Quartz Fix & Substitutions Removes Certus Quartz Dust from all loot chests (that are newly spawned) Adds a temporary conversion recipe between ae2 certus dust and gt certus dust Allow autocrafting in oreDict substitutes, useful for circuit crafting table recipes. --- overrides/config/AppliedEnergistics2/AppliedEnergistics2.cfg | 4 ++-- overrides/scripts/AE2.zs | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/overrides/config/AppliedEnergistics2/AppliedEnergistics2.cfg b/overrides/config/AppliedEnergistics2/AppliedEnergistics2.cfg index 358ea65..5f85e26 100644 --- a/overrides/config/AppliedEnergistics2/AppliedEnergistics2.cfg +++ b/overrides/config/AppliedEnergistics2/AppliedEnergistics2.cfg @@ -8,7 +8,7 @@ ########################################################################################################## autocrafting { - B:EnableAutocraftinSubstitutes=false + B:EnableAutocraftinSubstitutes=true } @@ -195,7 +195,7 @@ features { B:CertusOre=false B:CertusQuartzWorldGen=false B:ChargedCertusOre=false - B:ChestLoot=true + B:ChestLoot=false # Blocks that are not used in any essential recipes, also slabs and stairs. B:DecorativeBlocks=true diff --git a/overrides/scripts/AE2.zs b/overrides/scripts/AE2.zs index 5af263b..4447987 100644 --- a/overrides/scripts/AE2.zs +++ b/overrides/scripts/AE2.zs @@ -414,6 +414,9 @@ recipes.addShapeless( * 4, [ * 4, []); recipes.addShapeless( * 4, []); +// Temporary Conversion Recipe +recipes.addShapeless(, []); + mods.jei.JEI.removeAndHide();