But Stack Inserters work properly with the mod, while Fast Inserters do not. It seems completely arbitrary. Electric furnaces are affected by the mod, Steel Furnaces aren't, etc
{
type = "item",
name = "stack-inserter",
icon = "space-age/graphics/icons/stack-inserter.png",
subgroup = "inserter",
color_hint = { text = "B" },
order = "h[stack-inserter]",
inventory_move_sound = item_sounds.wire_inventory_move,
pick_sound = item_sounds.wire_inventory_pickup,
drop_sound = item_sounds.wire_inventory_move,
place_result = "stack-inserter",
stack_size = 50,
default_import_location = "gleba",
weight = 20*kg
},
{
type = "item",
name = "fast-inserter",
icon = "base/graphics/icons/fast-inserter.png",
subgroup = "inserter",
color_hint = { text = "F" },
order = "d[fast-inserter]",
inventory_move_sound = item_sounds.inserter_inventory_move,
pick_sound = item_sounds.inserter_inventory_pickup,
drop_sound = item_sounds.inserter_inventory_move,
place_result = "fast-inserter",
stack_size = 50
},
from two different item.lua files (stack interter from Space age folder, fast inserter from base folder). Notice any differences?
Fast inserters do not have their weight defined, so they default to 1 stack per rocket, while bulk inserters are "rocket capacity(kg) /inserter weight(kg)= number of inserters per rocket"
Unless Wube defines weight of all of the items in the game files, it will continue to be this inconsistent.
They even might do that, when they have time. :P