Compare commits

...

2 commits

Author SHA1 Message Date
Simon Brodtmann
5aa5efbd70 1.0.1 2025-09-14 14:06:00 +02:00
Simon Brodtmann
98c577925a Alloy Smelting: Crushed tungsten carbide can be smelted in the Kiln 2025-09-14 14:05:40 +02:00
4 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---------------------------------------------------------------------------------------------------
Version: 1.0.1
Date: 14.09.2025
Changes:
- Alloy Smelting: Crushed tungsten carbide can be smelted in the Kiln

View file

@ -1,2 +1,3 @@
require("prototypes/vanilla") require("prototypes/vanilla")
require("prototypes/alloy-smelting")
require("prototypes/muluna") require("prototypes/muluna")

View file

@ -1,6 +1,6 @@
{ {
"name": "crushing-industry-compatibility", "name": "crushing-industry-compatibility",
"version": "1.0.0", "version": "1.0.1",
"title": "Crushing Industry - Compatibility", "title": "Crushing Industry - Compatibility",
"description": "Improves compatibility between Crushing Industry and other mods including Vanilla.", "description": "Improves compatibility between Crushing Industry and other mods including Vanilla.",
"author": "cackling fiend", "author": "cackling fiend",

View file

@ -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