diff --git a/EIV.ico b/EIV.ico
deleted file mode 100644
index d0f0cb8..0000000
Binary files a/EIV.ico and /dev/null differ
diff --git a/EIV_Game.csproj b/EIV_Game.csproj
index ac9d8c0..2343782 100644
--- a/EIV_Game.csproj
+++ b/EIV_Game.csproj
@@ -64,7 +64,7 @@
-
+
diff --git a/csharp/Managers/GameManager.cs b/csharp/Managers/GameManager.cs
index d69aeb5..8af6a72 100644
--- a/csharp/Managers/GameManager.cs
+++ b/csharp/Managers/GameManager.cs
@@ -22,7 +22,8 @@ public override void _Ready()
{
this.Name = "GameManager";
MainLog.CreateNew();
- Log.Information(csharp.Properties.Resource.BuildDate.Replace("\n", "_"));
+ var bdate = csharp.Properties.Resource.BuildDate.Replace("\n", "|").Replace("\r", "").TrimEnd().Split("|");
+ Log.Information("Build information: {Branch} {BuildHash} {BuildYMD} {BuildHM}", bdate[0], bdate[1], bdate[2], bdate[3]);
Log.Information(BuildDefined.FullVersion);
Instance = this;
Log.Verbose("Preload JsonLib! " + (CoreConverters.Converters.Count == 1));
diff --git a/csharp/Menus/MainMenu.cs b/csharp/Menus/MainMenu.cs
index f5de919..f5d0d4c 100644
--- a/csharp/Menus/MainMenu.cs
+++ b/csharp/Menus/MainMenu.cs
@@ -1,4 +1,5 @@
#if CLIENT || GAME
+using ExtractIntoVoid.Client;
using ExtractIntoVoid.Managers;
using Godot;
@@ -9,9 +10,17 @@ public partial class MainMenu : Control
public override void _Ready()
{
this.GetWindow().Unresizable = true;
- GameManager.Instance.UIManager.LoadScreenStop();
+
GetNode