File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
mods/se-interstellar-construction-requests-fulfillment Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " se-interstellar-construction-requests-fulfillment" ,
3
3
"title" : " Space Exploration - interstellar construction requests fulfillment" ,
4
4
"description" : " Keeping building equipment stocked at every planet is tedious, just shoot it there from nauvis." ,
5
- "version" : " 1.1.1 " ,
5
+ "version" : " 1.1.2 " ,
6
6
"author" : " Quezler" ,
7
7
"factorio_version" : " 1.1" ,
8
8
"dependencies" : [
9
9
" space-exploration" ,
10
- " space-exploration-scripts >= 1.0.8"
10
+ " space-exploration-scripts >= 1.0.8" ,
11
+ " ? factoryplanner-is-exportable-to-fake-factorissimo"
11
12
]
12
13
}
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ function Handler.on_configuration_changed(event)
39
39
Handler .regenerate_item_request_proxy_whitelist ()
40
40
end
41
41
42
+ local entity_name_bypasses_proxy_whitelist = {
43
+ [' fietff-container-1' ] = true ,
44
+ }
42
45
function Handler .regenerate_item_request_proxy_whitelist ()
43
46
global .item_request_proxy_whitelist = {}
44
47
local module_prototypes = game .get_filtered_item_prototypes ({{filter = " type" , type = " module" }})
@@ -78,7 +81,7 @@ function Handler.items_to_place_this(alert_target)
78
81
elseif alert_target .name == " item-request-proxy" then
79
82
local items_to_place_this = {}
80
83
for name , count in pairs (alert_target .item_requests ) do
81
- if global .item_request_proxy_whitelist [name ] then
84
+ if global .item_request_proxy_whitelist [name ] or entity_name_bypasses_proxy_whitelist [ alert_target . proxy_target . name ] then
82
85
table.insert (items_to_place_this , {name = name , count = count })
83
86
end
84
87
end
You can’t perform that action at this time.
0 commit comments