Error while running setup for entity prototype "productivity-beacon-1-spaced" (beacon): Module inventory size is > 0 but no effects are allowed. This makes no sense.
The mod list contains your mod
Advanced_Sky_Modules
248k
Krastorio2
space-exploration(control.lua --Beacon = require('scripts/beacon'))
In your mod, I try to modify the data.lua code to skip this error
-- fix potential incompatibility between Space Exploration and other beacon mods such as 5Dim's
if mods["space-exploration"] then
for i, beacon in pairs(data.raw.beacon) do
beacon.se_allow_in_space = true
end
data.raw.beacon["productivity-beacon-1"].se_allow_in_space = false
data.raw.beacon["productivity-beacon-2"].se_allow_in_space = false
data.raw.beacon["productivity-beacon-3"].se_allow_in_space = false
end
It's just a temporary measure. I hope you find out why.