SAM Sites power setting always resets to true
in the json if you change:

"Can SAM Sites operate without power?": true,  

to

"Can SAM Sites operate without power?":  false,

once you reload the plugin, it overwrites the json with the default configure = true.
can you make it so that if the plugin sees the json it will not overwrite?
This was already fixed.

The problem marked as fixed here is still happening

The "Maximum distance players can turn on/off turrets" setting also reverts to its previous value every time the plugin reloads.

To make the new settings stick, I had to reload the plugin once with Config.WriteObject(_config, true); commented out here:

private void SaveConfig()
{
Config.WriteObject(_config, true);
}

After uncommenting that line, the config values can't be changed anymore again.

 

Holy frick, I had SaveConfig as an emotional method??