support memory units
This commit is contained in:
parent
203e66dd98
commit
01ac485a0d
3 changed files with 13 additions and 4 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.5.2
|
Version: 0.5.2
|
||||||
Date: 2020-09-20
|
Date: 2020-09-20
|
||||||
Changes:
|
Features:
|
||||||
- Krastorio 2 compatibility: dirty water filtration for titanium.
|
- Use in memory storage units, because why not.
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.5.1
|
Version: 0.5.1
|
||||||
Date: 2020-09-19
|
Date: 2020-09-19
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bztitanium",
|
"name": "bztitanium",
|
||||||
"version": "0.5.1",
|
"version": "0.5.2",
|
||||||
"factorio_version": "1.0",
|
"factorio_version": "1.0",
|
||||||
"title": "Titanium",
|
"title": "Titanium",
|
||||||
"author": "Brevven",
|
"author": "Brevven",
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,6 @@ if mods["Krastorio2"] then
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Aircraft changes
|
-- Aircraft changes
|
||||||
|
|
||||||
if mods["Aircraft"] then
|
if mods["Aircraft"] then
|
||||||
util.steel_to_titanium(data.raw.recipe["gunship"])
|
util.steel_to_titanium(data.raw.recipe["gunship"])
|
||||||
util.steel_to_titanium(data.raw.recipe["gunship"].normal)
|
util.steel_to_titanium(data.raw.recipe["gunship"].normal)
|
||||||
|
|
@ -70,3 +69,13 @@ if mods["Aircraft"] then
|
||||||
util.steel_to_titanium(data.raw.recipe["jet"].normal)
|
util.steel_to_titanium(data.raw.recipe["jet"].normal)
|
||||||
util.steel_to_titanium(data.raw.recipe["jet"].expensive)
|
util.steel_to_titanium(data.raw.recipe["jet"].expensive)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Memory storage changes
|
||||||
|
if data.raw.item["memory-unit"] then
|
||||||
|
util.steel_to_titanium(data.raw.recipe["memory-unit"])
|
||||||
|
util.steel_to_titanium(data.raw.recipe["memory-unit"].normal)
|
||||||
|
util.steel_to_titanium(data.raw.recipe["memory-unit"].expensive)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue