support for jetpacks

This commit is contained in:
Brevven 2020-09-25 20:46:27 -07:00
parent 02a5421a7a
commit 7f829ad07e
3 changed files with 15 additions and 2 deletions

View file

@ -1,6 +1,11 @@
--------------------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------------------
Version: 0.5.5
Date: 2020-09-26
Changes:
- Support for jetpacks
---------------------------------------------------------------------------------------------------
Version: 0.5.4 Version: 0.5.4
Date: 2020-09-26 Date: 2020-09-25
Changes: Changes:
- Krastorio 2 update: Add titanium to a few more recipes. - Krastorio 2 update: Add titanium to a few more recipes.
- Support for HelicopterRevival - Support for HelicopterRevival

View file

@ -1,6 +1,6 @@
{ {
"name": "bztitanium", "name": "bztitanium",
"version": "0.5.4", "version": "0.5.5",
"factorio_version": "1.0", "factorio_version": "1.0",
"title": "Titanium", "title": "Titanium",
"author": "Brevven", "author": "Brevven",

View file

@ -85,6 +85,12 @@ if mods["HelicopterRevival"] or mods["Helicopters"] then
util.steel_to_titanium(data.raw.recipe["heli-recipe"].expensive) util.steel_to_titanium(data.raw.recipe["heli-recipe"].expensive)
end end
if mods["jetpack"] then
util.steel_to_titanium(data.raw.recipe["jetpack-1"])
util.steel_to_titanium(data.raw.recipe["jetpack-1"].normal)
util.steel_to_titanium(data.raw.recipe["jetpack-1"].expensive)
end
-- Memory storage changes -- Memory storage changes
if data.raw.item["memory-unit"] then 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"])
@ -93,6 +99,8 @@ if data.raw.item["memory-unit"] then
end end
-- Settings, etc.
--
-- Finalize tech tree based on settings and other dependent mods. -- Finalize tech tree based on settings and other dependent mods.
local mining_fluid local mining_fluid
if settings.startup["bztitanium-mining-fluid"] then if settings.startup["bztitanium-mining-fluid"] then