diff --git a/changelog.txt b/changelog.txt index 781183a..7adf6b9 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 0.6.4 +Date: 2020-11-08 + Changes: + - Recipe for space loader/beltbox from Deadlock beltbox crate-Space Exploration bridge +--------------------------------------------------------------------------------------------------- Version: 0.6.3 Date: 2020-10-29 Changes: diff --git a/info.json b/info.json index 59a2fa8..f4916a2 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "bztitanium", - "version": "0.6.3", + "version": "0.6.4", "factorio_version": "1.0", "title": "Titanium", "author": "Brevven", @@ -12,7 +12,8 @@ "? space-exploration", "? Krastorio2", "? FactorioExtended-Plus-Core", - "? Pre0-17-60Oil" + "? Pre0-17-60Oil", + "? Deadlock-SE-bridge" ], "description": "Adds titanium to the base game.\n\nTitanium is used in Low Density Structures, Flying Robot Frames and a few other places.\n\nCompatible with Krastorio 2, Space Exploration, Aircraft, FE+ and other mods." } diff --git a/titanium-recipe-final.lua b/titanium-recipe-final.lua index 26f867b..3bb91d0 100644 --- a/titanium-recipe-final.lua +++ b/titanium-recipe-final.lua @@ -49,6 +49,15 @@ if data.raw.recipe["se-space-pipe"] then -- Organization data.raw.item["titanium-plate"].subgroup = "plates" + -- deadlock loaders for SE -- mods["deadlock-beltboxes-loaders"] + if mods["Deadlock-SE-bridge"] then + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-loader"]) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-loader"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-loader"].expensive) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-beltbox"]) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-beltbox"].normal) + util.steel_to_titanium(data.raw.recipe["se-space-transport-belt-beltbox"].expensive) + end end