From d758e40db65bd5e89463fcd1fcc0afecbb69aaaf Mon Sep 17 00:00:00 2001 From: Pyritie Date: Mon, 8 Sep 2025 00:34:10 +0100 Subject: [PATCH] fixes #1685 --- CHANGELOG.md | 2 ++ kubejs/server_scripts/gregtech/tags.js | 3 +++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d955bc49..866fa3b9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,8 @@ - Fixed rapeseed wild block model @BlueBoat29 - Fixed butchery knife not giving additional meat when used to kill an animal @Pyritie - Prospector picks can be placed on tool racks and interact with most inventory's again. @Redeix +- Fixed some of the more obvious dupes while we wait for a GregTech to do them properly (#1576) @Pyritie +- Fixed not being able to use buzzsaws (and chainsaws) to cut things into lumber (#1685) @Pyritie ### Translation updates - Chinese (simplified) @jmecn & @CN059 - Russian @Dl, @Kostabl, @Turikar42, & @But3r diff --git a/kubejs/server_scripts/gregtech/tags.js b/kubejs/server_scripts/gregtech/tags.js index 5831cf73a..25c130a01 100644 --- a/kubejs/server_scripts/gregtech/tags.js +++ b/kubejs/server_scripts/gregtech/tags.js @@ -76,6 +76,9 @@ const registerGTCEUItemTags = (event) => { // Rose Quartz Lens event.add('forge:lenses/pink', 'gtceu:rose_quartz_lens') + + event.add('tfc:saws', '#forge:tools/buzzsaws') + event.add('tfc:saws', '#forge:tools/chainsaws') } const registerGTCEUBlockTags = (event) => {