Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed recipes for long distance pipes #903

Open
wants to merge 2 commits into
base: master-ceu
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions groovy/postInit/mod/GregTech.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,14 @@ mods.gregtech.assembler.removeByInput(7, [item('minecraft:wool', 13) * 3, metait
mods.gregtech.assembler.removeByInput(7, [item('minecraft:wool', 14) * 3, metaitem('plateWood') * 3], null)
// Black Bed * 1
mods.gregtech.assembler.removeByInput(7, [item('minecraft:wool', 15) * 3, metaitem('plateWood') * 3], null)
// Long Distance Item Pipeline Endpoint * 2
mods.gregtech.assembler.removeByInput(16, [metaitem('pipeLargeItemTin') * 2, metaitem('plateSteel') * 8, metaitem('gearSteel') * 2, metaitem('circuit.integrated').withNbt(["Configuration": 1])], [fluid('tin') * 144])
// Long Distance Item Pipeline Endpoint * 2
mods.gregtech.assembler.removeByInput(16, [metaitem('pipeLargeItemTin') * 2, metaitem('plateSteel') * 8, metaitem('gearSteel') * 2, metaitem('circuit.integrated').withNbt(["Configuration": 1])], [fluid('soldering_alloy') * 72])
// Long Distance Item Pipe * 64
mods.gregtech.assembler.removeByInput(24, [metaitem('pipeLargeItemTin') * 2, metaitem('plateSteel') * 8, metaitem('circuit.integrated').withNbt(["Configuration": 2])], [fluid('tin') * 144])
// Long Distance Item Pipe * 64
mods.gregtech.assembler.removeByInput(24, [metaitem('pipeLargeItemTin') * 2, metaitem('plateSteel') * 8, metaitem('circuit.integrated').withNbt(["Configuration": 2])], [fluid('soldering_alloy') * 72])

def name_removals = [
'gregtech:cover_fluid_voiding',
Expand Down