diff --git a/CHANGELOG.md b/CHANGELOG.md index ae43191af..99e7982b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Fixed speed of bulk washing - Lowered SU requirements of some more Create machines - Reduced how many sticks were being placed in the nether +- Fixed new supports to work correctly ## [0.9.2] ### Changes @@ -76,6 +77,8 @@ - Allowed more blocks to be used as oven, forge, and bloomery insulation. - Fixed lang error with treated wood planks recipe. - Fixed bug with mmc package. +- Added recipe to separate fertilizer into pure sources, and mix them back together. +- Added recipes to sew hides together and cut them apart. ## [0.9.1] - 18.04.2025 ### Changes diff --git a/kubejs/server_scripts/tfc/data.js b/kubejs/server_scripts/tfc/data.js index d161fa580..c9d94bb9a 100644 --- a/kubejs/server_scripts/tfc/data.js +++ b/kubejs/server_scripts/tfc/data.js @@ -266,19 +266,19 @@ const registerTFCFoodData = (event) => { //#region registerTFCSupportData //up, down, horizontal const registerTFCSupportData = (event) => { - event.support('tfg:light_concrete_support', 4, 4, 8, 'light_concrete_support') - event.support('tfg:dark_concrete_support', 4, 4, 8, 'dark_concrete_support') - event.support('tfg:reinforced_light_concrete_support', 6, 6, 16, 'reinforced_light_concrete_support') - event.support('tfg:reinforced_dark_concrete_support', 6, 6, 16, 'reinforced_dark_concrete_support') - event.support('tfg:rebar_support', 4, 4, 8, 'rebar_support') - event.support('tfg:steel_support', 6, 6, 16, 'steel_support') + event.support('tfg:light_concrete_support_horizontal', 4, 4, 8, 'light_concrete_support') + event.support('tfg:dark_concrete_support_horizontal', 4, 4, 8, 'dark_concrete_support') + event.support('tfg:reinforced_light_concrete_support_horizontal', 6, 6, 16, 'reinforced_light_concrete_support') + event.support('tfg:reinforced_dark_concrete_support_horizontal', 6, 6, 16, 'reinforced_dark_concrete_support') + event.support('tfg:rebar_support_horizontal', 4, 4, 8, 'rebar_support') + event.support('tfg:steel_support_horizontal', 6, 6, 16, 'steel_support') const other_stone = ['pyroxenite', 'migmatite', 'travertine'] const stone_types = global.TFC_STONE_TYPES.concat(other_stone) stone_types.forEach(stone => { - event.support(`tfg:${stone}_support`, 2, 2, 4, `${stone}_support`) + event.support(`tfg:${stone}_support_horizontal`, 2, 2, 4, `${stone}_support`) }) } //#endregion