Big Bags (more space in bags +longer reach)


Big bags everywhere ! More space in inventory, toolbelt, logistic and trash slots, robots cargo size and speed, bigger stacks & pickstick to increase your picking distance...

Utilities
3 years ago
0.13 - 1.1
38.6K

g compatibility issues with py

1 year, 4 months ago

As tittle says theres some issues with PyAlienlife and this mod , fix if poss?

1 year, 3 months ago

data-final.fixes.lua

...
-- capsule stacks
for _, caps in pairs(data.raw["capsule"]) do
if caps.stackable then
caps.stack_size = new_size( caps.stack_size, my_stack_offset, my_stack_factor )
end
end

1 year, 8 days ago
(updated 1 year, 8 days ago)

data-final.fixes.lua

...
-- capsule stacks
for _, caps in pairs(data.raw["capsule"]) do
if caps.stackable then
caps.stack_size = new_size( caps.stack_size, my_stack_offset, my_stack_factor )
end
end

That code is not working (outdated probably)
use this :

-- module stacks
for _, modu in pairs(data.raw["module"]) do
    if modu.flags ~= nil and has_value(modu.flags,"not-stackable") then
        modu.stack_size = 1
    end
end

P.S. Made a mod that does this: https://mods.factorio.com/mod/BigBagAEQuickFix

New response