From bf87374b483d4321866d99797af7c4cf1cccff0c Mon Sep 17 00:00:00 2001 From: v1RuX Date: Thu, 16 Jan 2014 16:21:15 +0100 Subject: [PATCH] Show username in title Shows the username in console title to make identification easier when multiple instances of the client are running --- MinecraftClient/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/MinecraftClient/Program.cs b/MinecraftClient/Program.cs index 9602e4c4..cf6568a7 100644 --- a/MinecraftClient/Program.cs +++ b/MinecraftClient/Program.cs @@ -167,6 +167,9 @@ namespace MinecraftClient } } + //Set login as console title to identify it easier when multiple instances are running + Console.Title = "Console Client for MC - " + Settings.Login; + startupargs = args; InitializeClient(); }