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.
This commit is contained in:
IntegerLimit 2023-02-03 17:51:53 +11:00
parent bfdfdadf69
commit ce18dbe460
2 changed files with 5 additions and 2 deletions

View File

@ -8,7 +8,7 @@
########################################################################################################## ##########################################################################################################
autocrafting { autocrafting {
B:EnableAutocraftinSubstitutes=false B:EnableAutocraftinSubstitutes=true
} }
@ -195,7 +195,7 @@ features {
B:CertusOre=false B:CertusOre=false
B:CertusQuartzWorldGen=false B:CertusQuartzWorldGen=false
B:ChargedCertusOre=false B:ChargedCertusOre=false
B:ChestLoot=true B:ChestLoot=false
# Blocks that are not used in any essential recipes, also slabs and stairs. # Blocks that are not used in any essential recipes, also slabs and stairs.
B:DecorativeBlocks=true B:DecorativeBlocks=true

View File

@ -414,6 +414,9 @@ recipes.addShapeless(<metaitem:gemCertusQuartz> * 4, [<appliedenergistics2:quart
recipes.addShapeless(<metaitem:gemCertusQuartz> * 4, [<appliedenergistics2:quartz_pillar>]); recipes.addShapeless(<metaitem:gemCertusQuartz> * 4, [<appliedenergistics2:quartz_pillar>]);
recipes.addShapeless(<metaitem:gemCertusQuartz> * 4, [<appliedenergistics2:chiseled_quartz_block>]); recipes.addShapeless(<metaitem:gemCertusQuartz> * 4, [<appliedenergistics2:chiseled_quartz_block>]);
// Temporary Conversion Recipe
recipes.addShapeless(<metaitem:dustCertusQuartz>, [<appliedenergistics2:material:2>]);
mods.jei.JEI.removeAndHide(<appliedenergistics2:material:0>); mods.jei.JEI.removeAndHide(<appliedenergistics2:material:0>);