Compare commits
2 commits
85e644b861
...
5aa5efbd70
Author | SHA1 | Date | |
---|---|---|---|
![]() |
5aa5efbd70 | ||
![]() |
98c577925a |
4 changed files with 14 additions and 1 deletions
5
crushing-industry-compatibility/changelog.txt
Normal file
5
crushing-industry-compatibility/changelog.txt
Normal 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
|
|
@ -1,2 +1,3 @@
|
||||||
require("prototypes/vanilla")
|
require("prototypes/vanilla")
|
||||||
|
require("prototypes/alloy-smelting")
|
||||||
require("prototypes/muluna")
|
require("prototypes/muluna")
|
|
@ -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",
|
||||||
|
|
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue