diff --git a/CHANGELOG.md b/CHANGELOG.md index 83aa044e5..467ec7c37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,11 @@ - Fixed Steel engine crafting by using the GT Rotor (#1290) @TomPlop - Change Electrical Greenhouse to not consome the input but lower the seed output @TomPlop - Fixed the Autoclave recipe to make Rose Quartz at MV @TomPlop +- Fixed bug with Extruder Mold crafting (#1298) @BlueBoat29 +- Fixed texture issues found on some of the Extruder Mold textures @BlueBoat29 - Added default GUI Scale (#1313) @Redeix + ## [0.10.0] - 13.07.2025 - [!WARNING] If you're upgrading your world from 0.9 to 0.10, please read the upgrade guide [here](https://github.com/TerraFirmaGreg-Team/Modpack-Modern/wiki/%5BEN%5D-Upgrading-from-0.9-to-0.10). We do not recommend using Alpha versions for progression, but if you do, please make frequent backups! ### Major changes diff --git a/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png index 458d3bc58..37502c6f4 100644 Binary files a/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/axe_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png index 731208158..3ced0aea9 100644 Binary files a/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/scythe_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png index f69652eda..457c4ef35 100644 Binary files a/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/shovel_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png index 9ede5476b..42851fb87 100644 Binary files a/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/spade_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png index 36bbf22fa..408fc95b1 100644 Binary files a/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/sword_head_extruder_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png index b864a0440..ca3afba7c 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/large_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png index 62948948d..539e6c682 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/shell_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png b/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png index b820280ad..491dd3f28 100644 Binary files a/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png and b/kubejs/assets/tfg/textures/item/tacz_helpers/small_casing_mold.png differ diff --git a/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png b/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png index 9ec9d20b0..53e2c185e 100644 Binary files a/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png and b/kubejs/assets/tfg/textures/item/wire_cutter_head_extruder_mold.png differ diff --git a/kubejs/server_scripts/tacz/recipes.misc.js b/kubejs/server_scripts/tacz/recipes.misc.js index 946c0a548..a5a77d751 100644 --- a/kubejs/server_scripts/tacz/recipes.misc.js +++ b/kubejs/server_scripts/tacz/recipes.misc.js @@ -29,8 +29,8 @@ function registerTACZMiscRecipes(event) { //Molds event.shaped('tfg:small_casing_extruder_mold',[ - ' ', - 'AB ', + ' A', + ' B ', ' ' ],{ A: '#forge:tools/wire_cutters', @@ -89,4 +89,4 @@ function registerTACZMiscRecipes(event) { .itemOutputs('tfg:certus_mechanism') .EUt(GTValues.VA[GTValues.EV]) .duration(80) -} \ No newline at end of file +} diff --git a/kubejs/server_scripts/tfg/recipes.molds.js b/kubejs/server_scripts/tfg/recipes.molds.js index f24ad38ef..4738db382 100644 --- a/kubejs/server_scripts/tfg/recipes.molds.js +++ b/kubejs/server_scripts/tfg/recipes.molds.js @@ -263,9 +263,9 @@ function registerTFGMoldRecipes(event) { }) event.shaped('tfg:wire_cutter_head_extruder_mold', [ - ' ', 'hS ', - 'f ' + ' ', + ' f ' ], { S: 'gtceu:empty_mold', f: '#forge:tools/files',