I understand that he refers to
data-final-fixes.lua on line 12 of the changes in settings.lua
was
{
type = "bool-setting",
name = "load-furn-legacy",
setting_type = "startup",
default_value = true
order = "c"
},
has become
{
type = "bool-setting",
name = "load-furn-legacy",
setting_type = "startup",
default_value = false,
order = "c"
},
as well as on data.lua on lines 8-13 due to changes in settings.lua
was
{
type = "bool-setting",
name = "logist",
setting_type = "startup",
default_value = false,
order = "b"
},
has become
{
type = "bool-setting",
name = "logist",
setting_type = "startup",
default_value = true
order = "b"
},
From the files that you sent, I understand that on your server it should be like this
{
type = "bool-setting",
name = "load-furn-legacy",
setting_type = "startup",
default_value = true
order = "c"
},
{
type = "bool-setting",
name = "logist",
setting_type = "startup",
default_value = true
order = "b"
},
This is evident from the changes that you sent.
Or you can name the server, I will try to synchronize, so I can make a change until I reach a match