This commit is contained in:
Pyritie 2026-01-14 21:56:05 +00:00
parent 8556a19e3f
commit c5f8fd771b
3 changed files with 4 additions and 13 deletions

View file

@ -29,6 +29,7 @@
- Changed the texture of out-of-season blood lilies so they're findable year-round @Pyritie
- Added alloy smelter recipes for jar lids (#2705) @thederpysockdude123
- Reduced the amount of ambient awoos at night, and crickets/cicadas now require grass plants instead of grass blocks (#2680) @Pyritie
- You can now use any wrench to remove the extruder molds from the curving press instead of just the create wrench @Pyritie
### Bug fixes
- Fixed not being able to craft Paracetamol or Rad-Away @Pyritie
- Fixed the missing dried fruit to yeast starter recipe (#2673) @Mqrius
@ -47,6 +48,9 @@
- Fixed soaked paper in a helve hammer having a blow count of less than 1 for some anvils (#2655) @Pyritie
- Fixed casting of rods and gears for various metals @Pyritie
- Fixed a dupe with scraping knives (#2716) @Inceitious
- Fixed a rendering issue with the lunchboxes when held @Thomasx0
- Fixed the cooling lunchbox not stacking empty cells correctly (#2475) @Thomasx0
- Fixed the lunchboxes not removing the "cooling" trait when items were removed with the number keys @Thomasx0
### Translation updates
- Chinese (simplified) @jmecn
- Russian @Petr211071 + @Nixieeunrare + @Maxiffon

View file

@ -2,8 +2,4 @@
"use strict";
function registerTFCLunchBoxRecipes(event) {
// Убираем оригинальные рецепты капсул
// Remove original capsule recipes
event.remove({ id: 'tfclunchbox:universal_capsule' })
event.remove({ id: 'tfclunchbox:fill_capsule_with_ice' })
}

View file

@ -3,14 +3,5 @@
function registerTFCLunchboxItemTags(event) {
const DISABLED_ITEMS = [
'tfclunchbox:universal_capsule',
]
DISABLED_ITEMS.forEach(item => {
event.removeAllTagsFrom(item)
event.add('c:hidden_from_recipe_viewers', item)
})
event.add('tfclunchbox:ice', 'tfg:dry_ice')
}