diff --git a/Subsurface/Properties/AssemblyInfo.cs b/Subsurface/Properties/AssemblyInfo.cs index 13cd8707e..cfc80a621 100644 --- a/Subsurface/Properties/AssemblyInfo.cs +++ b/Subsurface/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.3.2.2")] -[assembly: AssemblyFileVersion("0.3.2.2")] +[assembly: AssemblyVersion("0.3.2.3")] +[assembly: AssemblyFileVersion("0.3.2.3")] diff --git a/Subsurface/Source/DebugConsole.cs b/Subsurface/Source/DebugConsole.cs index 211bd771a..a91ccf3e4 100644 --- a/Subsurface/Source/DebugConsole.cs +++ b/Subsurface/Source/DebugConsole.cs @@ -449,13 +449,16 @@ namespace Barotrauma DebugConsole.NewMessage("Deleted "+saveFile, Color.Green); } - var logFiles = System.IO.Directory.GetFiles(ServerLog.SavePath); - - foreach (string logFile in logFiles) + if (System.IO.Directory.Exists(ServerLog.SavePath)) { - System.IO.File.Delete(logFile); - DebugConsole.NewMessage("Deleted "+logFile, Color.Green); - } + var logFiles = System.IO.Directory.GetFiles(ServerLog.SavePath); + + foreach (string logFile in logFiles) + { + System.IO.File.Delete(logFile); + DebugConsole.NewMessage("Deleted "+logFile, Color.Green); + } + } if (System.IO.File.Exists("filelist.xml")) { @@ -472,6 +475,7 @@ namespace Barotrauma if (System.IO.File.Exists("crashreport.txt")) { + System.IO.File.Delete("crashreport.txt"); DebugConsole.NewMessage("Deleted crashreport.txt", Color.Green); } diff --git a/Subsurface/Submarines/Aegir Mark II.sub b/Subsurface/Submarines/Aegir Mark II.sub index 24bb65643..f9ef740a2 100644 Binary files a/Subsurface/Submarines/Aegir Mark II.sub and b/Subsurface/Submarines/Aegir Mark II.sub differ diff --git a/Subsurface/Submarines/Nehalennia.sub b/Subsurface/Submarines/Nehalennia.sub index ed020c7e6..d7c296ea6 100644 Binary files a/Subsurface/Submarines/Nehalennia.sub and b/Subsurface/Submarines/Nehalennia.sub differ diff --git a/Subsurface/Submarines/Vellamo.sub b/Subsurface/Submarines/Vellamo.sub index 20bcbefd8..dae0e8d9e 100644 Binary files a/Subsurface/Submarines/Vellamo.sub and b/Subsurface/Submarines/Vellamo.sub differ diff --git a/Subsurface/changelog.txt b/Subsurface/changelog.txt index d2dc23577..cb0a0da81 100644 --- a/Subsurface/changelog.txt +++ b/Subsurface/changelog.txt @@ -2,8 +2,9 @@ v0.3.2.3 --------------------------------------------------------------------------------------------------------- -- clearing the server log after saving! -- saving the log after every round (even if it isn't full) +- fixed characters dropping items when a spectator joins +- fixed any selected textbox in the server lobby accepting keyboard input after a round starts +- praise the honkmother --------------------------------------------------------------------------------------------------------- v0.3.2.2