-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-updates.lua
31 lines (28 loc) · 1.23 KB
/
data-updates.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- memory storage
if data.raw["container"]["memory-unit"] then
data.raw["container"]["memory-unit"].se_allow_in_space = true
end
-- fluid memory storage
if data.raw["container"]["fluid-memory-unit-container"] then
data.raw["container"]["fluid-memory-unit-container"].se_allow_in_space = true
end
-- logistic memory storage
if data.raw["logistic-container"]["active-provider-memory-unit"] then
data.raw["logistic-container"]["active-provider-memory-unit"].se_allow_in_space = true
end
if data.raw["logistic-container"]["passive-provider-memory-unit"] then
data.raw["logistic-container"]["passive-provider-memory-unit"].se_allow_in_space = true
end
if data.raw["logistic-container"]["storage-memory-unit"] then
data.raw["logistic-container"]["storage-memory-unit"].se_allow_in_space = true
end
if data.raw["logistic-container"]["requester-memory-unit"] then
data.raw["logistic-container"]["requester-memory-unit"].se_allow_in_space = true
end
if data.raw["logistic-container"]["buffer-memory-unit"] then
data.raw["logistic-container"]["buffer-memory-unit"].se_allow_in_space = true
end
-- improved combinator
if data.raw["container"]["improved-combinator"] then
data.raw["container"]["improved-combinator"].se_allow_in_space = true
end