Hey, was wondering if you could add custom chest amount each time it runs?
So I don't have to edit the mod every time there is an update xD
What I did was this:
Added this to settings.lua -->
{
type = "int-setting",
name = "item-network-item-transfer",
setting_type = "runtime-global",
default_value = 20,
minimum_value = 1,
},
Added a locale for it in the config.cfg
Changed line 484 in GlobalState.lua in the function M.update_queue(update_entity)
From --> local MAX_ENTITIES_TO_UPDATE = 20
To --> local MAX_ENTITIES_TO_UPDATE = settings.global["item-network-item-transfer"].value