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

removes Machine press mode from Machine press. replaces with forming #792

Merged
merged 2 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion kubejs/server_scripts/Netherite.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ ServerEvents.recipes(event => {
.blastFurnaceTemp(12000)

//Activated Nethline
event.recipes.gtceu.large_material_press('inert_nether_compound_ingot')
event.recipes.gtceu.forming_press('inert_nether_compound_ingot')
.itemInputs('gtceu:hot_europium_ingot', '16x kubejs:wither_bone', '4x gtceu:dark_soularium_dust', '4x kubejs:primal_mana')
.itemOutputs('kubejs:inert_nether_compound_ingot')
.duration(300)
Expand Down
2 changes: 1 addition & 1 deletion kubejs/startup_scripts/Multiblock_Registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ GTCEuStartupEvents.registry('gtceu:recipe_type', event => {

GTCEuStartupEvents.registry('gtceu:machine', event => {

GCyMMachines.LARGE_MATERIAL_PRESS.setRecipeTypes([GTRecipeTypes.BENDER_RECIPES, GTRecipeTypes.COMPRESSOR_RECIPES, GTRecipeTypes.FORGE_HAMMER_RECIPES, GTRecipeTypes.FORMING_PRESS_RECIPES, GTRecipeTypes.get('large_material_press')])
GCyMMachines.LARGE_MATERIAL_PRESS.setRecipeTypes([GTRecipeTypes.BENDER_RECIPES, GTRecipeTypes.COMPRESSOR_RECIPES, GTRecipeTypes.FORGE_HAMMER_RECIPES, GTRecipeTypes.FORMING_PRESS_RECIPES])

// Normal mode-exclusive multis
if (!isHardMode) {
Expand Down