Baseless/helpers/CreateRobotWithLogisticInte...

13 lines
225 B
Lua
Raw Normal View History

2020-04-22 04:35:40 +00:00
function CreateRobotWithLogisticInterface (type, prototype)
return CreateFlyingRobot(
type,
MergeTables(
prototype,
{
cargo_centered = {0, 0},
max_payload_size = 1,
}
)
)
end