From 53cda6036d6771e43060ba16553a062dc65e2441 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Sun, 4 Mar 2012 19:03:12 -0700 Subject: [PATCH] Version tick: 3.8.x.x Changed the improper shutdown message to be a little more informative. --- TShockAPI/Properties/AssemblyInfo.cs | 4 ++-- TShockAPI/TShock.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TShockAPI/Properties/AssemblyInfo.cs b/TShockAPI/Properties/AssemblyInfo.cs index 4a80bb77..ef64ab0f 100644 --- a/TShockAPI/Properties/AssemblyInfo.cs +++ b/TShockAPI/Properties/AssemblyInfo.cs @@ -48,5 +48,5 @@ using System.Runtime.InteropServices; // Build Number // MMdd of the build -[assembly: AssemblyVersion("3.7.0.0225")] -[assembly: AssemblyFileVersion("3.7.0.0225")] +[assembly: AssemblyVersion("3.8.0.0304")] +[assembly: AssemblyFileVersion("3.8.0.0304")] diff --git a/TShockAPI/TShock.cs b/TShockAPI/TShock.cs index 637f061e..9fc3aabb 100755 --- a/TShockAPI/TShock.cs +++ b/TShockAPI/TShock.cs @@ -137,7 +137,7 @@ namespace TShockAPI if (File.Exists(Path.Combine(SavePath, "tshock.pid"))) { Log.ConsoleInfo( - "TShock was improperly shut down. Please avoid this in the future, world corruption may result from this."); + "TShock was improperly shut down. Please use the exit command in the future to prevent this."); File.Delete(Path.Combine(SavePath, "tshock.pid")); } File.WriteAllText(Path.Combine(SavePath, "tshock.pid"), Process.GetCurrentProcess().Id.ToString(CultureInfo.InvariantCulture));