From 5ce73a3fb2a6c7ddd1687ad649b6e97fc8383f20 Mon Sep 17 00:00:00 2001 From: Brevven Date: Fri, 25 Sep 2020 21:22:12 -0700 Subject: [PATCH] support for raven --- changelog.txt | 1 + titanium-recipe-final.lua | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/changelog.txt b/changelog.txt index 5937f1c..f36a395 100644 --- a/changelog.txt +++ b/changelog.txt @@ -5,6 +5,7 @@ Date: 2020-09-26 - Support for jetpacks - Support for hovercrafts - Support for better cargo planes + - Support for raven --------------------------------------------------------------------------------------------------- Version: 0.5.4 Date: 2020-09-25 diff --git a/titanium-recipe-final.lua b/titanium-recipe-final.lua index ec97241..b3feb12 100644 --- a/titanium-recipe-final.lua +++ b/titanium-recipe-final.lua @@ -103,6 +103,12 @@ if mods["Hovercrafts"] then util.steel_to_titanium(data.raw.recipe["hcraft-recipe"].expensive) end +if mods["Raven"] then + util.add_titanium_ingredient(100, data.raw.recipe["raven"]) + util.add_titanium_ingredient(100, data.raw.recipe["raven"].normal) + util.add_titanium_ingredient(100, data.raw.recipe["raven"].expensive) +end + -- Memory storage changes if data.raw.item["memory-unit"] then util.steel_to_titanium(data.raw.recipe["memory-unit"])