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
|
||||
Date: 2020-09-20
|
||||
Changes:
|
||||
- Krastorio 2 compatibility: dirty water filtration for titanium.
|
||||
Features:
|
||||
- Use in memory storage units, because why not.
|
||||
---------------------------------------------------------------------------------------------------
|
||||
Version: 0.5.1
|
||||
Date: 2020-09-19
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bztitanium",
|
||||
"version": "0.5.1",
|
||||
"version": "0.5.2",
|
||||
"factorio_version": "1.0",
|
||||
"title": "Titanium",
|
||||
"author": "Brevven",
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ if mods["Krastorio2"] then
|
|||
end
|
||||
|
||||
-- Aircraft changes
|
||||
|
||||
if mods["Aircraft"] then
|
||||
util.steel_to_titanium(data.raw.recipe["gunship"])
|
||||
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"].expensive)
|
||||
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