From ff08e9843c5dbed1241736b0e473eadad21972c6 Mon Sep 17 00:00:00 2001 From: Brevven Date: Sun, 14 Aug 2022 19:56:01 -0700 Subject: [PATCH] rsc --- changelog.txt | 25 +++++++++++++++++++++++++ compatibility/rsc.lua | 8 ++++++++ data-updates.lua | 1 + info.json | 2 +- 4 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 compatibility/rsc.lua diff --git a/changelog.txt b/changelog.txt index 53f6d51..00335c8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,29 @@ --------------------------------------------------------------------------------------------------- +Version: 0.4.6 +Date: 2022-08-15 + Fixes: + - When grinding Ti-sapphires, returned diamonds no longer affected by prod modules + Changes: + - Industrial display plates compatibility + - More minor mod compatibility - various high-tier belts and inserters including + Bob's logistics, ultimate belts + Features: + - The engineer starts with a single burner inserter. Yay! (Setting to turn this off.) + This allows players to create aluminum plates without being forced to manually move items + from one machine to another. +--------------------------------------------------------------------------------------------------- +Version: 0.4.5 +Date: 2022-08-11 + Fixes: + - SE: Fix delivery cannon recipes post 0.4.0 +--------------------------------------------------------------------------------------------------- +Version: 0.4.4 +Date: 2022-08-10 + Changes: + - Cable item subgroup + - Rocket Silo Construction - initial compatibility + - With S&S mod, Silica landfill recipe icon shows silica +--------------------------------------------------------------------------------------------------- Version: 0.4.3 Date: 2022-08-10 Changes: diff --git a/compatibility/rsc.lua b/compatibility/rsc.lua new file mode 100644 index 0000000..0b315ba --- /dev/null +++ b/compatibility/rsc.lua @@ -0,0 +1,8 @@ +-- Rocket silo construction +local util = require("data-util"); + +if mods["Rocket-Silo-Construction"] then + util.replace_ingredient("rsc-construction-stage4", "stone-brick", "alumina") + util.replace_ingredient("rsc-construction-stage5", "copper-cable", "aluminum-cable", 0.25, true) + util.replace_ingredient("rsc-construction-stage5", "copper-plate", "aluminum-plate") +end diff --git a/data-updates.lua b/data-updates.lua index b76d343..499646f 100644 --- a/data-updates.lua +++ b/data-updates.lua @@ -10,6 +10,7 @@ require("map-gen-preset-updates") require("strange-matter") require("compatibility/248k") require("compatibility/sciencecosttweakerm") +require("compatibility/rsc") local util = require("data-util") if data.raw.resource["copper-ore"] then diff --git a/info.json b/info.json index 824d226..ca156c8 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bzaluminum", - "version": "0.4.3", + "version": "0.4.6", "factorio_version": "1.1", "title": "Aluminum", "author": "Brevven",