Is it possible to add compatibility with Nullius small chests? I have made a personal modification that appears to work (based on the DyWorld patch earlier):
init-settings.lua:
if MergingChests.CheckMod("nullius") then
MergingChests.MergableChestIdToData["nullius-small-chest-1"] = {
id = "nullius-small-chest-1",
name = "Nullius Small Storage Chest 1",
type = "iron",
additional_properties = {
icon = "__base__/graphics/entity/iron-chest/iron-chest.png",
icon_size = 32
}
}
MergingChests.MergableChestIdToData["nullius-small-chest-2"] = {
id = "nullius-small-chest-2",
name = "Nullius Small Storage Chest 2",
type = "steel",
additional_properties = {
icon = "__base__/graphics/entity/steel-chest/steel-chest.png",
icon_size = 32
}
}
end
init.lua:
MergingChests.AreaChests = {
["wooden-chest"] = true,
["iron-chest"] = true,
["steel-chest"] = true,
["brass-chest"] = true,
["titanium-chest"] = true,
["small-storage"] = true,
["small-storage-2"] = true,
["small-storage-3"] = true,
["nullius-small-chest-1"] = true,
["nullius-small-chest-2"] = true
}