diff --git a/CHANGELOG.md b/CHANGELOG.md index 240953a52..bb84b14d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ - Recolored diamond GregTech things to match the color of the vanilla diamond item @Pyritie - Buffed the HP of the Illager Beast @Pyritie - Added a thermochemically treated hardwood dust -> soaked unrefined paper recipe to the helve hammer (#2621) @Pyritie +- Added Ad Astra's decorative blocks to Domum Ornamentum's whitelist (#2627) @thederpysockdude123 #### Hazard changes - Added a new medical condition, Irradiated, caused by the Radioactive hazard which all radioactive things (including naquadria and neutronium) now have instead of Carcinogenic. It has the same symptoms/side effects as carcinogenic. - Paracetamol now cures carcinogenic, and Rad-Away cures both carcinogenic and irradiated. This is because you encounter carcinogenic hazards much sooner than radioactive ones, so the only cure for radioactive being way in HV didn't make much sense. In order to change the effects of these pills, we had to make new items, so any existing ones won't have these changes, sorry. @@ -46,7 +47,7 @@ - Fixed some inconsistent ladder recipes (#2616) @Pyritie ### Translation updates - Chinese (simplified) @jmecn -- Russian @Petr211071 +- Russian @Petr211071 @AlexUnder ## [0.11.15] - 31-12-2025 ### Bug fixes diff --git a/kubejs/server_scripts/vintage_improvements/recipes.js b/kubejs/server_scripts/vintage_improvements/recipes.js index 59f60bc7b..5f908e4b3 100644 --- a/kubejs/server_scripts/vintage_improvements/recipes.js +++ b/kubejs/server_scripts/vintage_improvements/recipes.js @@ -175,7 +175,7 @@ function registerVintageImprovementsRecipes(event) { }) HAMMERING_ITEMS.forEach(x => { - generateHammeringRecipe(event, x.material, x.blows, 'copper'); + generateHammeringRecipeFromItem(event, x.input, x.output, x.blows, 'copper'); x.blows--; }) diff --git a/kubejs/startup_scripts/gtceu/constants.js b/kubejs/startup_scripts/gtceu/constants.js index bcee0d1f2..92c377a5e 100644 --- a/kubejs/startup_scripts/gtceu/constants.js +++ b/kubejs/startup_scripts/gtceu/constants.js @@ -231,7 +231,11 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([ "gtceu:thorium_plate", "gtceu:double_thorium_plate", "gtceu:thorium_rod", - "gtceu:thorium_bucket" + "gtceu:thorium_bucket", + + // Replaced with our own + "gtceu:paracetamol_pill", + "gtceu:rad_away_pill" ]); //#endregion @@ -247,11 +251,7 @@ global.GTCEU_HIDED_ITEMS = /** @type {const} */ ([ "gtceu:iv_damascus_steel_wrench", "gtceu:lv_damascus_steel_screwdriver", - "gtceu:sus_record", - - // Replaced with our own - "gtceu:paracetamol_pill", - "gtceu:rad_away_pill" + "gtceu:sus_record" ]); //#endregion