SE-Forever Bright

by zhuying

Space exploration,All planets,Forever Day,Don't be dark * Well pump, space exploration, patch, buildable。 * Incinerator, space exploration, patch, buildable。 *trash can, space exploration, patch, buildable。

Content
12 days ago
1.1 - 2.0
911

b Error loading without a third-party mod

1 year, 2 months ago

When loading your mod together with a clean SE factorio gives an error.

factorio-current.log

If mod Afraid Of The Dark is present in the build when loading, then the error does not appear. (Not enough dependency?)

1 year, 2 months ago

if not has_omni_light then
table.insert(lights,
{
minimum_darkness = my_light_minimum_darkness,
intensity = my_light_intensity * iif(add_omni_full,1,0.5),
size =iif(add_omni_full,my_light_size,20),
}
There is a code error here to update 0.0.4

if not has_omni_light then
table.insert(lights,
{
minimum_darkness = my_light_minimum_darkness,
intensity = my_light_intensity * (add_omni_full and 1 or 0.5),
size = add_omni_full and my_light_size or 20,
}
)
end

New response