Renamed settings to start with a Capital letter

Removed config read on post init. Already read in SetupConfig which is called in Init
Added option to disable auto saving
This commit is contained in:
high 2011-06-25 00:44:07 -04:00
parent d369852998
commit 17cd6652d7
7 changed files with 48 additions and 30 deletions

View file

@ -54,8 +54,8 @@ namespace TShockAPI
public bool ListServer = false;
public int spawnTileX;
public int spawnTileY;
public int SpawnTileX;
public int SpawnTileY;
public int Spawn_WorldID;
public bool RememberLeavePos = false;
@ -63,5 +63,7 @@ namespace TShockAPI
public bool HardcoreOnly = false;
public bool KickOnHardcoreOnlyDeath = false;
public bool BanOnHardcoreOnlyDeath = false;
public bool AutoSave = true;
}
}