diff --git a/CHANGELOG.md b/CHANGELOG.md index 32aabf3ef..250635a0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,14 +25,19 @@ ### New features ### Bug fixes - Fixed double ingots not having a temperature (#1165) @Pyritie -- Removed a few recipes that had unobtainable create-related materials @Pyritie +- Removed a few recipes that had unobtainable greate-related materials @Pyritie - Fixed the color of placed zinc ingots and plated blocks to match the material @Pyritie - Fixed some other steel/colored steel items being extractable in LV @Pyritie +- Fixed polished/cut migmatite recipe conflict (#1153) @JeanRdSz +- You can now use casting channels, mold tables, and mechanical pumps on top of a Hellforge (#1183) @Indiiix ### Changes - Changed pineapple yarn recipe from assembler to wiremill & coiling machine, like the other strings (#1162) @Pyritie - Lowered durability of wooden tongs @Pyritie - Streamlined the Metallurgy Age quest chapter a bit @Pyritie - Mushroom blocks now drop way less mushroom @Pyritie +- Removed gems tag from flint @Pyritie +- Updated texture for aqueous accumulator (#1168) @Redeix +- Kaolin Klayzes now also drop blood lilies @Pyritie ## [0.9.11] - 13.06.2025 ### New features diff --git a/kubejs/server_scripts/primitive_creatures/loot.js b/kubejs/server_scripts/primitive_creatures/loot.js index 8856417ac..89010f10d 100644 --- a/kubejs/server_scripts/primitive_creatures/loot.js +++ b/kubejs/server_scripts/primitive_creatures/loot.js @@ -5,8 +5,9 @@ function registerPrimitiveCreaturesLoots(event) { event.addEntityLootModifier('kaolinclayze:tfc') .removeLoot(ItemFilter.ALWAYS_TRUE) .addWeightedLoot([12,16], ['tfc:kaolin_clay', 'minecraft:clay_ball']) + .addLoot('tfc:plant/blood_lily') event.addEntityLootModifier('kaolinclayze:golem_2') .removeLoot(ItemFilter.ALWAYS_TRUE) - .addWeightedLoot([4,6], ['gtceu:rich_raw_graphite']) + .addWeightedLoot([3,5], ['gtceu:rich_raw_graphite']) } \ No newline at end of file