diff --git a/CHANGELOG.md b/CHANGELOG.md index b6d57b745..6352c63e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,14 @@ - Other recipe and tag unifications for consistency, like all cobbles should landslide, all slabs should be craftable the same way, etc ### Changes - Fixed balancing issues with the Aquaponics Loop. @Redeix +- Mars log electric greenhouse recipes now output the same amount of logs as earth log recipes @Pyritie ### Bug fixes - Fixed a config bug causing waves to deposit shells etc with 100% chance. @Mqrius - Fixed a bug preventing the Pisciculture Fishery and Hydroponics Facility from overclocking. @Redeix - Fixed not being able to make glass tubes out of glass dust (#2795) @thederpysockdude123 - Fixed roads losing their movement speed bonus (#2790) @Pyritie - Fixed water wheels misbehaving again (#2791) @Pyritie +- Fixed not being able to cast steel or higher tier materials into ceramic molds (#2789, #2794) @Pyritie ### Translation updates - Spanish @NikoNeko17 diff --git a/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js b/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js index fc3a19f9b..84f2ea84e 100644 --- a/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js +++ b/kubejs/server_scripts/tfg/aquaponics/recipes.greenhouse.js @@ -504,22 +504,22 @@ const registerTFGGreenhouseRecipes = (event) => { // Mars Wood generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/strophar', [ - '64x ad_astra:strophar_stem', '4x tfg:saplings/strophar', '16x ad_astra:strophar_cap', '16x ad_astra:strophar_cap' + '64x ad_astra:strophar_stem', '4x tfg:saplings/strophar', '32x ad_astra:strophar_stem', '16x ad_astra:strophar_cap' ], 1); generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/aeronos', [ - '64x ad_astra:aeronos_stem', '4x tfg:saplings/aeronos', '16x ad_astra:aeronos_cap', '16x ad_astra:aeronos_cap' + '64x ad_astra:aeronos_stem', '4x tfg:saplings/aeronos', '32x ad_astra:aeronos_stem', '16x ad_astra:aeronos_cap' ], 1); generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/glacian', [ - '64x ad_astra:glacian_log', '4x tfg:saplings/glacian', '16x species:alphacene_moss_block', '16x species:alphacene_moss_block' + '64x ad_astra:glacian_log', '4x tfg:saplings/glacian', '32x ad_astra:glacian_log', '16x species:alphacene_moss_block' ], 1); generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/alphacene', [ '64x species:alphacene_mushroom_block', '4x tfg:saplings/alphacene', '16x minecraft:mushroom_stem', '16x minecraft:mushroom_stem' ], 1); generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/warped', [ - '64x beneath:wood/log/warped', '4x tfg:saplings/warped', '16x minecraft:warped_wart_block', '16x minecraft:warped_wart_block' + '64x beneath:wood/log/warped', '4x tfg:saplings/warped', '32x beneath:wood/log/warped', '16x minecraft:warped_wart_block' ], 1); generateGreenHouseRecipe(event, 'ad_astra:mars', '8x tfg:saplings/crimson', [ - '64x beneath:wood/log/crimson', '4x tfg:saplings/crimson', '16x minecraft:nether_wart_block', '16x minecraft:nether_wart_block' + '64x beneath:wood/log/crimson', '4x tfg:saplings/crimson', '32x beneath:wood/log/crimson', '16x minecraft:nether_wart_block' ], 1); // Mars Plants diff --git a/kubejs/server_scripts/tfg/mars/tags.mars.js b/kubejs/server_scripts/tfg/mars/tags.mars.js index 12ac9db8a..e4d2a6778 100644 --- a/kubejs/server_scripts/tfg/mars/tags.mars.js +++ b/kubejs/server_scripts/tfg/mars/tags.mars.js @@ -107,6 +107,13 @@ function registerTFGMarsItemTags(event) { event.add('tfg:charnia', 'betterend:charnia_light_blue') event.add('tfg:charnia', 'betterend:charnia_purple') event.add('tfg:charnia', 'betterend:charnia_red') + + event.add('tfg:mars_plants', 'minecraft:weeping_vines') + + event.add('tfc:compost_greens_low', 'beneath:wood/leaves/crimson') + event.add('tfc:compost_greens_low', 'beneath:wood/leaves/warped') + event.add('tfc:compost_greens_low', 'tfg:glacian_leaves') + event.add('tfc:compost_greens_low', '#tfg:mars_plants') } function registerTFGMarsBlockTags(event) {