3.1 Config Refactor

This commit is contained in:
AconiteGodOfSWG
2021-03-28 16:44:33 -04:00
parent 694a499356
commit 355796dd48
148 changed files with 900 additions and 6277 deletions
@@ -226,16 +226,7 @@ public class spawner_area extends script.base_script
}
public boolean canSpawnByConfigSetting() throws InterruptedException
{
String disableSpawners = getConfigSetting("GameServer", "disableAreaSpawners");
if (disableSpawners == null)
{
return true;
}
if (disableSpawners.equals("true") || disableSpawners.equals("1"))
{
return false;
}
return true;
return !spawning.AREA_SPAWNERS_DISABLED;
}
public int OnDestroy(obj_id self) throws InterruptedException
{