Added warning in case of auto backup failure.

This commit is contained in:
zippy 2006-11-09 00:38:36 +00:00
parent 40fd597c79
commit d26a6fc177

View file

@ -77,7 +77,7 @@ namespace Server.Misc
return;
try{ Backup(); }
catch{}
catch (Exception e) { Console.WriteLine("WARNING: Automatic backup FAILED: {0}", e); }
World.Save();
}