From 336bea11eae4663f41573c286966043c5cb34218 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 22 Mar 2026 00:18:40 +0000 Subject: [PATCH] 0.11.28 --- CHANGELOG.md | 20 ++++++++++++++++++- defaultconfigs/create-server.toml | 6 +++--- kubejs/server_scripts/diggerhelmet/recipes.js | 2 +- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d5267c61..de40f418d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,33 @@ # Changelog ## Unreleased +### Changes +### Bug fixes +### Translation updates + +## [0.11.28] - 22-03-2026 +No, this isn't the worldgen update. That's version 0.12. ### Breaking changes - Circuit change for Tier 1 Rocket Fin / ASM Alloy Mixer / Rocket Fin Tier 2 / Rocket Cone Tier 2 to avoid recipe conflicts @TomPlop - Chorus-Infused Ceramic Insulation now requires a fluix crystal instead of dust, to avoid a recipe conflict (#3411) @Pyritie - All other laser engraver lens recipes now require gem lenses instead of glass ones (#3460) @TomPlop +- The Heat Exchanger needs to be broken and recrafted because of a namespace change @TomPlop +- Fixed dust consistency for Redstone Etching Fluid but now it needs a lot more redstone to craft (#3486) @SpicyNoodle5 ### Changes - Cleaned up some of the stonecutter recipes so there should be fewer duplicates @Pyritie @SpicyNoodle5 - Added equivalent assembler recipes for Immersive Aircraft crafting table recipes (#3410) @SpicyNoodle5 - Changed the rain screen effect to a clear transparent texture instead of blue dots (#3422) @applenper - Cassiterite and Cassiterite Sand ores now smelt directly into 1 tin instead of 2, to match TFC @Pyritie -- The highest tier airplanes now actually require stainless steel as their quest says @Pyritie +- The highest tier airplanes now actually require stainless steel as their quest says, and tweaked some of the other aircraft recipes @Pyritie - Added more gem slurries for ore processing and lens crafting (#3460) @TomPlop - Sped up the crafting times of basalt fiber insulation and silicon carbide (#3460) @TomPlop - More balance changes to the new large boilers, and added EMI tabs for the information (#3460) @TomPlop +- Added slurries for all the other gem ores, although the Clean slurries won't be craftable until Venus @TomPlop @SakuraKitsurugi +- Added fuels for trains! Like with solid fuel, liquid fuels make your train go faster, except fluids have to be in a separate Fuel Tank. Most combustible liquid fuels work. (#3273) @SakuraKitsurugi +- Increased the speed and acceleration of fuelled trains to double their unfuelled stats @Pyritie +- Added recycling recipes for Input/Output Hatches/Buses (#3470) @Nixieeunrare +- Added recipes to craft more locometal items before LV machines, and improved locometal crafting in general (#3462, #3484) @SakuraKitsurugi +- Added crafting for copycat pressure plates and recycling for most copycat blocks (#3463) @SakuraKitsurugi ### Bug fixes - Fixed the field guide not working @Mqrius - Fixed not being able to put the copper spindle on a tool rack (#3445) @DrEthan77 @@ -23,7 +37,11 @@ - Fixed being able to dupe chorus fruit by repeatedly breaking and placing a chorus flower (#3433) @Pyritie - Fixed Keratophyre missing a texture when knapping (#3418) @Pyritie - Fixed High Voltage Coils only requiring 1 black steel fine wire instead of 16 like the others @Pyritie +- Fixed not being able to use vintage alcohols for general alcohol crafts (#3464) @lysteryale ### Translation updates +- Chinese (simplified) @jmecn +- Ukranian @MetEnBouldry @furrydenis, s5edranner +- Russian @Nixieeunrare, Polimerka, mihikav, Regrifone, Arka ## [0.11.27] - 13-03-2026 ### Changes diff --git a/defaultconfigs/create-server.toml b/defaultconfigs/create-server.toml index 7d235c600..5be0f28f8 100644 --- a/defaultconfigs/create-server.toml +++ b/defaultconfigs/create-server.toml @@ -532,15 +532,15 @@ #[in Blocks/Second] #The top speed of powered Trains. #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainTopSpeed = 40.0 + poweredTrainTopSpeed = 56.0 #. #[in Blocks/Second] #The top speed of powered Trains during a turn. #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainTurningTopSpeed = 20.0 + poweredTrainTurningTopSpeed = 28.0 #. #[in Blocks/Second²] #The acceleration of powered Trains. #Range: 0.0 ~ 3.4028234663852886E38 - poweredTrainAcceleration = 3.0 + poweredTrainAcceleration = 6.0 diff --git a/kubejs/server_scripts/diggerhelmet/recipes.js b/kubejs/server_scripts/diggerhelmet/recipes.js index 76df6483f..6fa7816db 100644 --- a/kubejs/server_scripts/diggerhelmet/recipes.js +++ b/kubejs/server_scripts/diggerhelmet/recipes.js @@ -9,7 +9,7 @@ function registerDiggerHelmetRecipes(event) { event.recipes.gtceu.assembler('tfg:mining_speed_modifier') .itemInputs('#forge:plates/blue_steel', '#gtceu:circuits/lv', '2x tfg:haste_pill') - .inputFluids(Fluid.of('tfcagedalcohol:aged_whiskey', 1000)) + .inputFluids(Fluid.of('tfg:vintage_whiskey', 1000)) .itemOutputs('diggerhelmet:mining_speed_modifier') .EUt(16) .duration(400)