Changed Allowed to Active in config to match internals.

This commit is contained in:
Brianna 2021-02-25 16:56:07 -06:00
parent 626af1b665
commit 7483b5c10e

View File

@ -381,7 +381,7 @@ public class SpawnerManager {
for (SpawnerData spawnerData : getAllSpawnerData()) {
ConfigurationSection currentSection = spawnersSection.createSection(spawnerData.getIdentifyingName());
currentSection.set("Allowed", spawnerData.isActive());
currentSection.set("Active", spawnerData.isActive());
currentSection.set("Custom", spawnerData.isCustom());
currentSection.set("Custom-Goal", spawnerData.getKillGoal());
currentSection.set("Convertible", spawnerData.isConvertible());