Scarecrow settings not workingFixed

I changed the file o the following

{
"Spawn Settings": {
"Murderer Population": 500.0,
"Murderer Health": 100.0,
"Scarecrow Population": 100.0,
"Scarecrow Health": 150.0,
"Reverse Spawn Timings": false,
"Chance Settings": {
"Chance per cycle": 100.0,
"Days betewen spawn": 0
}

and reload plugin... it kills the zombies and then 7:30pm comes and then this shows?

halloween.enabled: "True"
halloween.murdererpopulation: "500"
halloween.scarecrowpopulation: "500"

Thanks for this, there was an issue where it was using the murderer population for both murders and scarecrows. This will be fixed shortly.

I replaced
server.Command("halloween.scarecrowpopulation", on ? config.SpawnSettings.murdererPoluation : 0);

with

server.Command("halloween.scarecrowpopulation", on ? config.SpawnSettings.scarecrowpopulation: 0);

but gave me an class error... so i just completely removed the line, 

server.Command("halloween.scarecrowpopulation", on ? config.SpawnSettings.murdererPoluation : 0);

untill you fix it :-)

Just updated, should be fixed.

Locked automatically