diff --git a/CHANGELOG.md b/CHANGELOG.md index a989cecbc..1ed8c1fa2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ ## Unreleased ### Changes ### Bug fixes +- Fixed incorrect mechanical mixer recipes for weak and regular colored steel dust (#2977) @Pyritie +- Fixed cobble breaking into two cobble blocks (#2980) @Pyritie ### Translation updates ## [0.11.20] - 04-02-2026 @@ -15,6 +17,7 @@ - Fixed all the missing crafting table saw recipes (#2967) @Pyritie - Fixed not being able to send crafting requests to your AE2 network with the interdimensional wireless card @Mqrius - Fixed the hydroponics facility, pisciculture fishery, and growth chamber's missing overclocks @TomPlop +- Fixed matches, matchboxes, and lighters so they actually work with TFC things now (#1486) @Pyritie ### Translation updates - Spanish @NikoNeko17 diff --git a/kubejs/server_scripts/tfc/tags.js b/kubejs/server_scripts/tfc/tags.js index 8f69d82c7..514226f04 100644 --- a/kubejs/server_scripts/tfc/tags.js +++ b/kubejs/server_scripts/tfc/tags.js @@ -485,6 +485,11 @@ function registerTFCItemTags(event) { event.add('tfc:mob_offhand_weapons', 'gtceu:black_bronze_knife'); event.add('tfc:mob_offhand_weapons', 'tfc:metal/javelin/black_bronze'); event.add('tfc:mob_offhand_weapons', 'tfc:metal/mace/black_bronze'); + + event.add('tfc:starts_fires_with_items', 'gtceu:matches'); + event.add('tfc:starts_fires_with_durability', 'gtceu:matchbox'); + event.add('tfc:starts_fires_with_durability', 'gtceu:invar_lighter'); + event.add('tfc:starts_fires_with_durability', 'gtceu:platinum_lighter'); } /** @param {TagEvent.Block} event */ diff --git a/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_tools.js b/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_tools.js index 8eabb675d..88485e155 100644 --- a/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_tools.js +++ b/kubejs/server_scripts/tfg/ores_and_materials/recipes.material_tools.js @@ -183,4 +183,34 @@ function modifyRecyclingAmounts(material) { TFGTagPrefix.toolHeadSaw.modifyMaterialAmount(material, 1); TFGTagPrefix.toolHeadFile.modifyMaterialAmount(material, 1); TFGTagPrefix.toolHeadKnife.modifyMaterialAmount(material, 1); + TFGTagPrefix.toolHeadScythe.modifyMaterialAmount(material, 1); + + // TODO: uncomment out if this are ever modifiable + //GTToolType.SWORD.modifyMaterialAmount(material, 2); + //GTToolType.PICKAXE.modifyMaterialAmount(material, 1); + //GTToolType.AXE.modifyMaterialAmount(material, 1); + //GTToolType.SHOVEL.modifyMaterialAmount(material, 1); + //GTToolType.HOE.modifyMaterialAmount(material, 1); + //GTToolType.KNIFE.modifyMaterialAmount(material, 1); + //GTToolType.FILE.modifyMaterialAmount(material, 1); + //GTToolType.SAW.modifyMaterialAmount(material, 1); + //GTToolType.SPADE.modifyMaterialAmount(material, 2); + //GTToolType.MINING_HAMMER.modifyMaterialAmount(material, 2); + //GTToolType.SCYTHE.modifyMaterialAmount(material, 1); + //GTToolType.HARD_HAMMER.modifyMaterialAmount(material, 1); + //GTToolType.BUTCHERY_KNIFE.modifyMaterialAmount(material, 1); + //GTToolType.SCREWDRIVER.modifyMaterialAmount(material, 1); + //GTToolType.SCREWDRIVER_LV.modifyMaterialAmount(material, 1); + //GTToolType.SCREWDRIVER_HV.modifyMaterialAmount(material, 1); + //GTToolType.SCREWDRIVER_IV.modifyMaterialAmount(material, 1); + //GTToolType.WRENCH.modifyMaterialAmount(material, 2); + //GTToolType.WRENCH_LV.modifyMaterialAmount(material, 2); + //GTToolType.WRENCH_HV.modifyMaterialAmount(material, 2); + //GTToolType.WRENCH_IV.modifyMaterialAmount(material, 2); + //GTToolType.WIRE_CUTTER.modifyMaterialAmount(material, 2); + //GTToolType.WIRE_CUTTER_LV.modifyMaterialAmount(material, 2); + //GTToolType.WIRE_CUTTER_HV.modifyMaterialAmount(material, 2); + //GTToolType.WIRE_CUTTERIV.modifyMaterialAmount(material, 2); + //GTToolType.MORTAR.modifyMaterialAmount(material, 1); + //GTToolType.BUZZSAW.modifyMaterialAmount(material, 2); } \ No newline at end of file