]> git.somenet.org - factorio/some-infinitychest.git/blob - data.lua
RELEASE 1.1.2 - Version-Bump. No functional changes. (I am still alive :)
[factorio/some-infinitychest.git] / data.lua
1 -- Trivial mod by someone1337 uploaded because of our LAN game.
2 local infinity_chest = util.table.deepcopy(data.raw["infinity-container"]["infinity-chest"])
3
4 -- make it a buffer chest.
5 infinity_chest.logistic_mode = "buffer"
6
7 -- bots dont try to pickup not (yet) existent items.
8 -- we therefore need a waaaay larger inventory and fill it up.
9 infinity_chest.inventory_size = 159
10 infinity_chest.logistic_slots_count = infinity_chest.inventory_size
11
12 data:extend({infinity_chest})