diff --git a/TShockAPI/BackupManager.cs b/TShockAPI/BackupManager.cs index 31be1b5b..1bff999e 100644 --- a/TShockAPI/BackupManager.cs +++ b/TShockAPI/BackupManager.cs @@ -67,6 +67,7 @@ namespace TShockAPI if (worldpath != null && !Directory.Exists(worldpath)) Directory.CreateDirectory(worldpath); + Tools.Broadcast("Server map saving, potential lag spike"); WorldGen.saveWorld(); Console.WriteLine("World backed up"); diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index d55e9962..e3314934 100755 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -911,6 +911,7 @@ namespace TShockAPI private static void Save(CommandArgs args) { + Tools.Broadcast("Server map saving, potential lag spike"); WorldGen.saveWorld(); args.Player.SendMessage("World saved."); } diff --git a/TShockAPI/Properties/AssemblyInfo.cs b/TShockAPI/Properties/AssemblyInfo.cs index 8d310394..62add030 100644 --- a/TShockAPI/Properties/AssemblyInfo.cs +++ b/TShockAPI/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ using System.Runtime.InteropServices; // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.3.0.0628")] -[assembly: AssemblyFileVersion("2.3.0.0628")] \ No newline at end of file +[assembly: AssemblyVersion("2.3.0.0629")] +[assembly: AssemblyFileVersion("2.3.0.0629")]