From 5279b6e999d67e2a3cbae202fa98d09ace0fb792 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 21 Dec 2025 14:33:31 +0000 Subject: [PATCH] magma is now hot --- CHANGELOG.md | 2 ++ kubejs/server_scripts/tfchotornot/tags.js | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d2250dea..cd90328d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,13 @@ - Added some new illages to the hot and dry climates of the world! @MVG31 - Added some mossy cobblestone to the beneath @Pyritie - Hardened non-TFC rocks are now craftable (#2447) @glitchplaysgames714 +- Magma blocks are now hot to hold @Pyritie ### Bug fixes - Fixed some curving press tool head recipes being cheaper than intended (#2478) @Pyritie - Fixed some bastion chests being empty @Pyritie - Fixed overlapping durability numbers on the curio HUD (#2484) @glitchplaysgames714 ### Translation updates +- Chinese (simplified) @jmecn ## [0.11.12] - 19-12-2025 ### Changes diff --git a/kubejs/server_scripts/tfchotornot/tags.js b/kubejs/server_scripts/tfchotornot/tags.js index 9bb1a6891..b320fb6f4 100644 --- a/kubejs/server_scripts/tfchotornot/tags.js +++ b/kubejs/server_scripts/tfchotornot/tags.js @@ -10,9 +10,15 @@ const registerHotOrNotItemTags = (event) => { }) event.add('tfchotornot:hot_whitelist', '#forge:hot_ingots') + event.add('tfchotornot:hot_whitelist', 'minecraft:magma_block') event.add('tfchotornot:cold_whitelist', 'minecraft:blue_ice') event.add('tfchotornot:cold_whitelist', 'tfg:dry_ice') + global.TFC_MAGMA_BLOCKS.forEach(magma => { + event.add('tfchotornot:hot_whitelist', magma) + }) + + event.add('firmalife:usable_on_oven', '#tfchotornot:insulating') event.add('tfg:insulating_container', 'gtceu:ulv_super_tank')