From ecba52b775e96b9d7b6d4417c6b7206c087e4216 Mon Sep 17 00:00:00 2001 From: OLOXpl <125832723+OLOXpl@users.noreply.github.com> Date: Sun, 1 Feb 2026 23:44:59 +0100 Subject: [PATCH 1/2] cotta fix (#2940) dupe fix + valid recipe --- kubejs/server_scripts/macaws_for_tfc/recipes.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kubejs/server_scripts/macaws_for_tfc/recipes.js b/kubejs/server_scripts/macaws_for_tfc/recipes.js index 352f5cca6..2880c456a 100644 --- a/kubejs/server_scripts/macaws_for_tfc/recipes.js +++ b/kubejs/server_scripts/macaws_for_tfc/recipes.js @@ -23,4 +23,11 @@ function registerMacawsForTFCRecipes(event) { C: `tfc:wood/log/${wood}` }).id(`tfg:shaped/${wood}_wired_fence`) }) + + event.remove({input: ['mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab','#tfc:saws']}) + + event.shapeless('minecraft:gray_terracotta', [ + 'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab', + 'mcw_tfc_aio:roofs/gray_roofs/gray_roof_slab' + ]).id('minecraft:gray_terracotta') } From 92e1c653a6b207720a4ddf5f779f9a22403bc7b8 Mon Sep 17 00:00:00 2001 From: thederpysockdude123 Date: Sun, 1 Feb 2026 15:40:16 -0800 Subject: [PATCH 2/2] Added a couple recipes to egh (#2944) * added a couple recipes to EGH Signed-off-by: thederpysockdude123 * some tag stuff to get it working lol Signed-off-by: thederpysockdude123 --------- Signed-off-by: thederpysockdude123 --- .../server_scripts/tfg/aquaponics/recipes.greenhouse.js | 8 ++++++-- kubejs/server_scripts/tfg/beneath/tags.beneath.js | 9 ++++++++- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js b/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js index 2c88edd43..fa8c59eb5 100644 --- a/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js +++ b/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js @@ -465,7 +465,7 @@ const registerTFGGreenhouseRecipes = (event) => { //#region Recipes // Mushrooms - Ingredient.of('#beneath:mushrooms').stacks.forEach(element => { + Ingredient.of('#tfg:plants/beneath').stacks.forEach(element => { generateGreenHouseRecipe(event, 'minecraft:the_nether', `8x ${element.id}`, [element.withCount(24), element.withCount(8)], 1); }); @@ -501,6 +501,10 @@ const registerTFGGreenhouseRecipes = (event) => { }); generateGreenHouseRecipe(event, null, '8x minecraft:bamboo', ['64x minecraft:bamboo', '8x minecraft:bamboo'], 1); + + generateGreenHouseRecipe(event, null, '8x tfc:food/fresh_seaweed', ['24x tfc:food/fresh_seaweed', '8x tfc:food/fresh_seaweed'], 1); + + generateGreenHouseRecipe(event, 'minecraft:the_nether', '4x minecraft:glow_berries', ['20x minecraft:glow_berries', '4x minecraft:glow_berries'], 1); // Mars Wood generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/strophar', [ @@ -547,4 +551,4 @@ const registerTFGGreenhouseRecipes = (event) => { }); //#endregion -}; \ No newline at end of file +}; diff --git a/kubejs/server_scripts/tfg/beneath/tags.beneath.js b/kubejs/server_scripts/tfg/beneath/tags.beneath.js index c61249bb5..768569bea 100644 --- a/kubejs/server_scripts/tfg/beneath/tags.beneath.js +++ b/kubejs/server_scripts/tfg/beneath/tags.beneath.js @@ -15,6 +15,10 @@ function registerTFGBeneathItemTags(event) { event.add('tfc:plants', 'minecraft:spore_blossom') event.remove('createaddition:plants', 'minecraft:moss_carpet') + event.add('tfg:plants/beneath', 'beneath:gleamflower') + event.add('tfg:plants/beneath', 'beneath:burpflower') + event.add('tfg:plants/beneath', '#beneath:mushrooms') + event.add('tfc:compost_greens', 'minecraft:red_mushroom_block') event.add('tfc:compost_greens', 'minecraft:brown_mushroom_block') event.add('tfc:compost_greens', 'minecraft:mushroom_stem') @@ -27,6 +31,9 @@ function registerTFGBeneathItemTags(event) { function registerTFGBeneathBlockTags(event) { event.add('tfg:lush_ground_replaceable', 'minecraft:deepslate') event.add('tfg:lush_ground_replaceable', 'minecraft:blackstone') + + event.remove('tfc:plants', 'beneath:gleamflower') + event.remove('tfc:plants', 'beneath:burpflower') event.add('minecraft:lush_ground_replaceable', 'minecraft:blackstone') event.add('beneath:nether_bush_plantable_on', 'minecraft:blackstone') @@ -136,4 +143,4 @@ function registerTFGBeneathPlacedFeatures(event) { event.add('tfg:nether_underground_decoration', 'minecraft:spring_open') event.add('tfg:nether_underground_decoration', 'minecraft:spring_closed') event.add('tfg:nether_underground_decoration', 'tfg:nether/terrain/magma_blob') -} \ No newline at end of file +}