fix deadlock beltbox issue

This commit is contained in:
Brevven 2021-01-07 12:30:12 -08:00
parent 3da9c16feb
commit 6f201c5e93
3 changed files with 11 additions and 4 deletions

View file

@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.9.8
Date: 2021-01-07
Fixes:
- Bugfix for space exploration deadlock beltbox edge cases
---------------------------------------------------------------------------------------------------
Version: 0.9.7
Date: 2020-12-29
Fixes:

View file

@ -1,6 +1,6 @@
{
"name": "bztitanium",
"version": "0.9.7",
"version": "0.9.8",
"factorio_version": "1.1",
"title": "Titanium",
"author": "Brevven",

View file

@ -48,8 +48,10 @@ if data.raw.recipe["se-space-pipe"] 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)
if data.raw.recipe["se-space-transport-belt-beltbox"] then
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
end