mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Username in window title using %username%
- No window title is set if 'consoletitle' setting is not set - Lowercase %username% will be replaced by the user's name
This commit is contained in:
parent
ed3079091b
commit
a627842bed
2 changed files with 10 additions and 4 deletions
|
|
@ -21,7 +21,7 @@ namespace MinecraftClient
|
|||
public static string Password = "";
|
||||
public static string ServerIP = "";
|
||||
public static string SingleCommand = "";
|
||||
public static string ConsoleTitle = "Minecraft Console Client";
|
||||
public static string ConsoleTitle = "";
|
||||
|
||||
//Other Settings
|
||||
public static string TranslationsFile_FromMCDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + @"\.minecraft\assets\virtual\legacy\lang\en_GB.lang";
|
||||
|
|
@ -214,7 +214,7 @@ namespace MinecraftClient
|
|||
+ "\r\n"
|
||||
+ "translationsfile=translations.lang\r\n"
|
||||
+ "botownersfile=bot-owners.txt\r\n"
|
||||
+ "consoletitle=Minecraft Console Client\r\n"
|
||||
+ "consoletitle=Minecraft Console Client - %username%\r\n"
|
||||
+ "\r\n"
|
||||
+ "#Bot Settings\r\n"
|
||||
+ "\r\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue