This commit is contained in:
Pyritie 2025-11-23 17:20:27 +00:00
parent d7a0fb28bf
commit 255ca1a69e
4 changed files with 29 additions and 2 deletions

View file

@ -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

View file

@ -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": [

View file

@ -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": [

View file

@ -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')
}