There is an extra surface_of_holding in the other column of my remote view
I can't remove it, I searched all the mod codes and found it was generated within this mod.
--- Create or return a dummy storage surface
function Util.get_dummy_surface()
if game.surfaces.surface_of_holding then
return game.surfaces.surface_of_holding
end
local none = { frequency = "none" }
local autoplace_controls = {}
for k,_ in pairs(prototypes.autoplace_control) do
autoplace_controls[k] = none
end
return game.create_surface(
'surface_of_holding',
{ width=1, height=1, autoplace_controls = autoplace_controls }
)
end