This commit is contained in:
Pyritie 2026-01-22 20:37:28 +00:00
commit 40fedfa17e
3 changed files with 6 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

View file

@ -832,6 +832,10 @@ function removeGTCEURecipes(event) {
event.remove({ id: 'gtceu:compressor/compress_plate_dust_wood' })
// Remove Netherrack dust centrifuging
event.remove({ id: 'gtceu:centrifuge/netherrack_separation' })
// Remove Default Pressure Plate Recipes
const MC_PRESSURE_PLATES = [
'bamboo',

View file

@ -91,6 +91,7 @@ function registerGTCEUBlockTags(event) {
event.add("gtceu:cleanroom_doors", "ad_astra:desh_sliding_door");
event.add("gtceu:cleanroom_doors", "ad_astra:ostrum_sliding_door");
event.add("gtceu:cleanroom_doors", "ad_astra:calorite_sliding_door");
event.add("gtceu:cleanroom_doors", "ad_astra:airlock");
// Groups up concrete blocks into tags.
Object.entries(global.GTCEU_CONCRETE_BLOCKS).forEach(([type, ids]) => {
@ -112,4 +113,4 @@ function registerGTCEUFluidTags(event) {
event.add("c:hidden_from_recipe_viewers", "gtceu:blaze");
event.add("c:hidden_from_recipe_viewers", "gtceu:thorium");
}
}