diff --git a/crushing-industry-compatibility/changelog.txt b/crushing-industry-compatibility/changelog.txt new file mode 100644 index 0000000..b62ed30 --- /dev/null +++ b/crushing-industry-compatibility/changelog.txt @@ -0,0 +1,5 @@ +--------------------------------------------------------------------------------------------------- +Version: 1.0.1 +Date: 14.09.2025 + Changes: + - Alloy Smelting: Crushed tungsten carbide can be smelted in the Kiln \ No newline at end of file diff --git a/crushing-industry-compatibility/data.lua b/crushing-industry-compatibility/data.lua index de282b0..1e028b3 100644 --- a/crushing-industry-compatibility/data.lua +++ b/crushing-industry-compatibility/data.lua @@ -1,2 +1,3 @@ require("prototypes/vanilla") +require("prototypes/alloy-smelting") require("prototypes/muluna") \ No newline at end of file diff --git a/crushing-industry-compatibility/info.json b/crushing-industry-compatibility/info.json index c4f7f35..f81d843 100644 --- a/crushing-industry-compatibility/info.json +++ b/crushing-industry-compatibility/info.json @@ -1,6 +1,6 @@ { "name": "crushing-industry-compatibility", - "version": "1.0.0", + "version": "1.0.1", "title": "Crushing Industry - Compatibility", "description": "Improves compatibility between Crushing Industry and other mods including Vanilla.", "author": "cackling fiend", diff --git a/crushing-industry-compatibility/prototypes/alloy-smelting.lua b/crushing-industry-compatibility/prototypes/alloy-smelting.lua new file mode 100644 index 0000000..567d813 --- /dev/null +++ b/crushing-industry-compatibility/prototypes/alloy-smelting.lua @@ -0,0 +1,7 @@ +if not mods["space-age"] or not mods["alloy-smelting"] then return end + +if settings.startup["crushing-industry-ore"].value then + local tungsten_carbide = data.raw.recipe["crushed-tungsten-carbide"] + tungsten_carbide.additional_categories = tungsten_carbide.additional_categories or {} + table.insert(tungsten_carbide.additional_categories, "kiln-smelting") +end \ No newline at end of file