Fixes SQL not working correctly. and saving

This commit is contained in:
Twitchy 2011-07-12 22:47:36 +12:00
parent 6def12b517
commit eda5cfc10d
4 changed files with 20 additions and 30 deletions

View file

@ -106,15 +106,7 @@ namespace TShockAPI
/// </summary>
public static void SaveWorld()
{
try
{
WorldGen.RealsaveWorld();
}
catch
{
WorldGen.saveWorld();
}
WorldGen.saveWorld();
Broadcast("World saved.", Color.Yellow);
Log.Info(string.Format("World saved at ({0})", Main.worldPathName));
}