Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion prototypes/buildings/containers/deposit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local function define_deposit(name, logistics_name)
icon_size = 64,
flags = {},
subgroup = "py-containers-deposit",
order = entity_type .. "[" .. full_name .. "]",
order = entity_type .. ((name == "buffer" and "-d") or (name == "requester" and "-e") or "-c") .. "[" .. full_name .. "]",
place_result = full_name,
stack_size = 10
}
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/containers/shed.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local function define_shed(name, logistics_name)
icon_size = 64,
flags = {},
subgroup = "py-containers-shed",
order = entity_type .. "[" .. full_name .. "]",
order = entity_type .. ((name == "buffer" and "-d") or (name == "requester" and "-e") or "-c") .. "[" .. full_name .. "]",
place_result = full_name,
stack_size = 10
}
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/containers/storehouse.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local function define_storehouse(name, logistics_name)
icon_size = 64,
flags = {},
subgroup = "py-containers-storehouse",
order = entity_type .. "[" .. full_name .. "]",
order = entity_type .. ((name == "buffer" and "-d") or (name == "requester" and "-e") or "-c") .. "[" .. full_name .. "]",
place_result = full_name,
stack_size = 10
}
Expand Down
2 changes: 1 addition & 1 deletion prototypes/buildings/containers/warehouse.lua
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local function define_warehouse(name, logistics_name)
icon_size = 64,
flags = {},
subgroup = "py-containers-warehouse",
order = entity_type .. "[" .. full_name .. "]",
order = entity_type .. ((name == "buffer" and "-d") or (name == "requester" and "-e") or "-c") .. "[" .. full_name .. "]",
place_result = full_name,
stack_size = 10
}
Expand Down