From c5f8fd771be67cff8f8c0477ff90cb702c0054d7 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Wed, 14 Jan 2026 21:56:05 +0000 Subject: [PATCH] lunchbox --- CHANGELOG.md | 4 ++++ kubejs/server_scripts/tfclunchbox/recipes.js | 4 ---- kubejs/server_scripts/tfclunchbox/tags.js | 9 --------- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d37db98da..3d955ab46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/kubejs/server_scripts/tfclunchbox/recipes.js b/kubejs/server_scripts/tfclunchbox/recipes.js index 4267488c6..b2b032cae 100644 --- a/kubejs/server_scripts/tfclunchbox/recipes.js +++ b/kubejs/server_scripts/tfclunchbox/recipes.js @@ -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' }) } \ No newline at end of file diff --git a/kubejs/server_scripts/tfclunchbox/tags.js b/kubejs/server_scripts/tfclunchbox/tags.js index 0ac986a2b..3639258b9 100644 --- a/kubejs/server_scripts/tfclunchbox/tags.js +++ b/kubejs/server_scripts/tfclunchbox/tags.js @@ -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') } \ No newline at end of file