Configured in plugin, but not changingSolved
I uploaded this plugin to my server but I tought that junkpile spawnrate was really low,so I decided to find how to Increase spawnrate of junkpiles and divesites but It didn't effect anything. (And yes I know how to reload a plugin)
Things that I tried
{
"Junk Pile Spawn Frequency": 30.0,
"Dive Site Spawn Frequency": 45.0,
"Minimal Distance Between Junk Piles": 50,
"Minimal Distance Between Dive Sites": 50,
"Minimal Distance Between Water And Terrain": 20,
"Maximal Dive Site Angle": 20,
"Dive Sites' Lifetime": 600,
"Junk Piles' Lifetime": 300,
"Maximum Number Of Attempts To Find A Location": 500
}
I tried to increase spawn frequency= didn't work
I tried to decrease the minimal distance between them = didn't work
I tried to icnrease lifetime = didn't work
I tried same stuff on .cs file
{
[JsonProperty(PropertyName = "Junk Pile Spawn Frequency")]
public float JunkPileTime = 30;

[JsonProperty(PropertyName = "Dive Site Spawn Frequency")]
public float DiveSiteTime = 45;

[JsonProperty(PropertyName = "Minimal Distance Between Junk Piles")]
public int JunkPileRange = 50;

[JsonProperty(PropertyName = "Minimal Distance Between Dive Sites")]
public int DiveSiteRange = 50;

[JsonProperty(PropertyName = "Minimal Distance Between Water And Terrain")]
public int BetweenWaterTerrain = 20;

[JsonProperty(PropertyName = "Maximal Dive Site Angle")]
public int AngleMax = 20;

[JsonProperty(PropertyName = "Dive Sites' Lifetime")]
public int DiveSiteLife = 600;

[JsonProperty(PropertyName = "Junk Piles' Lifetime")]
public int JunkPileLife = 300;

[JsonProperty(PropertyName = "Maximum Number Of Attempts To Find A Location")]
public int LocAttemptsMax = 500;
}
= didn't work.
What is the solution ?
You should only change JSON and never .cs. Increase lifetime and decrease frequency.
thx
Thank you! it works 
Locked automatically