diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b405d9bc..388b1feda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,16 @@ ### Changes - Add shapeless p2p recipes (#2234) @SpicyNoodle5 - Added assembler, smelting and heating recipes for firmalife ovens (#2220) @SpicyNoodle5 -- Raised burning fluid threshold from 370K to 1300K @Redeix +- Raised player-burning fluid threshold from 370K to 1300K @Redeix - Added partial unification to the gtceu wax material @Redeix +- Mars endermen can no longer pick up the wrong kind of warped/crimson sapling, and the correct kind has been added to their loot tables (#2240) ### Bug fixes - Fixed brown gravy recipe @Redeix - Fixed instant mac recipe requiring less cardboard than it gives back @Redeix - Fixed Ad Astra moon cheese nutrition values being inconsistent @Redeix +- Fixed some quest typos @Pyritie +- Fixed duplicate bed dyeing recipe (#2229) @Pyritie +- Fixed Basic Hermetic Casing missing a mineable tag and loot table (#2221) @Pyritie ### Translation updates ## [0.11.8] - 19-11-2025 diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json index dd94d9a88..22fd9ab62 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/crimson_enderman.json @@ -11,6 +11,16 @@ ], "rolls": 1.0 }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/crimson" + } + ], + "rolls": 1.0 + }, { "bonus_rolls": 0.0, "entries": [ diff --git a/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json b/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json index 14b5db23c..373c8bdf1 100644 --- a/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json +++ b/kubejs/data/endermanoverhaul/loot_tables/entities/warped_enderman.json @@ -11,6 +11,16 @@ ], "rolls": 1.0 }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "tfg:saplings/warped" + } + ], + "rolls": 1.0 + }, { "bonus_rolls": 0.0, "entries": [ diff --git a/kubejs/server_scripts/minecraft/tags.js b/kubejs/server_scripts/minecraft/tags.js index c9b1f4a86..fb4f5c00f 100644 --- a/kubejs/server_scripts/minecraft/tags.js +++ b/kubejs/server_scripts/minecraft/tags.js @@ -205,5 +205,8 @@ const registerMinecraftBlockTags = (event) => { event.add('tfc:can_be_snow_piled', 'minecraft:crimson_fungus') event.add('tfc:can_be_snow_piled', 'minecraft:warped_fungus') event.add('tfc:can_be_snow_piled', 'minecraft:torchflower') - event.add('tfc:can_be_snow_piled', 'minecraft:pitcher_plant') + event.add('tfc:can_be_snow_piled', 'minecraft:pitcher_plant') + + event.remove('minecraft:enderman_holdable', 'minecraft:crimson_fungus') + event.remove('minecraft:enderman_holdable', 'minecraft:warped_fungus') } \ No newline at end of file