From 1111a31795a06dc8a4a52933bf3db8250e670457 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 11 Nov 2025 21:57:57 +0000 Subject: [PATCH] fix #2178 --- kubejs/server_scripts/rnr/recipes.js | 29 +++++++++++++++++++++++++ kubejs/startup_scripts/tfc/constants.js | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/rnr/recipes.js b/kubejs/server_scripts/rnr/recipes.js index 27cd2d635..06b762c3d 100644 --- a/kubejs/server_scripts/rnr/recipes.js +++ b/kubejs/server_scripts/rnr/recipes.js @@ -51,6 +51,35 @@ const registerRnrRecipes = (event) => { '1x rnr:ceramic_roof_tile', 'rnr:unfired_roof_tile' ).id('rnr:smelting/unfired_roof_tile') + + event.remove({id: 'rnr:clay_knapping/roof_tile_a'}) + event.remove({id: 'rnr:clay_knapping/roof_tile_b'}) + event.remove({id: 'rnr:clay_knapping/roof_tile_c'}) + + event.recipes.tfc.knapping('10x rnr:unfired_roof_tile', 'tfc:clay', [ + 'XXXXX', + 'X X', + ' ', + 'XXXXX', + 'X X' + ]).id('tfg:clay_knapping/roof_tile_a') + + event.recipes.tfc.knapping('5x rnr:unfired_roof_tile', 'tfc:clay', [ + 'XXXXX', + 'X X', + ' ', + ' ', + ' ' + ]).id('tfg:clay_knapping/roof_tile_b') + + event.recipes.tfc.knapping('5x rnr:unfired_roof_tile', 'tfc:clay', [ + ' ', + ' ', + ' ', + 'XXXXX', + 'X X' + ]).id('tfg:clay_knapping/roof_tile_c') + event.recipes.gtceu.mixer('rnr:mixer/wet_concrete_mix') .inputFluids('gtceu:concrete 192', "#tfg:clean_water 808") diff --git a/kubejs/startup_scripts/tfc/constants.js b/kubejs/startup_scripts/tfc/constants.js index 8f5a680ef..120f77dd3 100644 --- a/kubejs/startup_scripts/tfc/constants.js +++ b/kubejs/startup_scripts/tfc/constants.js @@ -845,7 +845,7 @@ global.TFC_CLAY_TO_UNFIRED_MOLD_RECIPE_COMPONENTS = /** @type {const} */ ([ { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_vessel", name: "vessel" }, { input: "5x minecraft:clay_ball", output: "tfc:ceramic/unfired_large_vessel", name: "large_vessel" }, { input: "5x minecraft:clay_ball", output: "tfcchannelcasting:unfired_heart_mold", name: "heart_mold" }, - { input: "5x minecraft:clay_ball", output: "2x rnr:unfired_roof_tile", name: "roof_tile" }, + { input: "5x minecraft:clay_ball", output: "10x rnr:unfired_roof_tile", name: "roof_tile" }, { input: "5x tfc:fire_clay", output: "tfc:ceramic/unfired_fire_ingot_mold", name: "fire_ingot_mold" }, { input: "5x tfc:fire_clay", output: "tfc:ceramic/unfired_crucible", name: "crucible" }, { input: "5x tfc:fire_clay", output: "tfcchannelcasting:unfired_channel", name: "channel" },