diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d5ea237..f3ea56a10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,11 @@ ## [Unreleased] ### Changes +- Added more meats for mars animals, and some new textures (#2001) @Redeix +- Added a recipe for turning glass dust into lamp glass @Pyritie +- Added more recipe unification for quartz, certus quartz, create's minerals, fixed wall chiseling recipes (#2005) @vidal-adrien ### Bug fixes +- Fixed a crash with the sandworm on servers (#2006) @BlueBoat29 ## [0.11.2] - 09-10-2025 ### Changes diff --git a/kubejs/server_scripts/tfc/recipes.machines.js b/kubejs/server_scripts/tfc/recipes.machines.js index b5641cb63..ab1192402 100644 --- a/kubejs/server_scripts/tfc/recipes.machines.js +++ b/kubejs/server_scripts/tfc/recipes.machines.js @@ -196,6 +196,13 @@ function registerTFCMachineRecipes(event) { .duration(100) .EUt(2) + event.recipes.gtceu.alloy_smelter(`tfg:tfc/lamp_glass_from_dust`) + .itemInputs('#forge:dusts/glass') + .notConsumable('#tfg:unfinished_lamps') + .itemOutputs('tfc:lamp_glass') + .duration(100) + .EUt(2) + // Empty Jar event.recipes.gtceu.alloy_smelter('tfc:jar_alloying') .itemInputs('#tfc:glass_batches_tier_2')