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
2 days ago
0.13 - 2.1
59.7K
Armor Storage

g compatibility issues with py

3 years ago

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

3 years 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

3 years ago
(updated 3 years 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

2 days ago

I've filed https://github.com/pyanodon/pybugreports/issues/1570 to get us un-conflicted from pymods now that the incompatibility is fixed.

New response