mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Strip Minecraft Color Codes (§) in BasicIO-NoColor mode (#995)
Strip Minecraft color codes and formatting (§) if in BasicIO mode by using BasicIO-NoColor.
This commit is contained in:
parent
43c2b4b73b
commit
a018304f99
4 changed files with 16 additions and 2 deletions
|
|
@ -55,6 +55,11 @@ namespace MinecraftClient
|
|||
/// </summary>
|
||||
public static bool BasicIO = false;
|
||||
|
||||
/// <summary>
|
||||
/// Determines whether not to print color codes in BasicIO mode.
|
||||
/// </summary>
|
||||
public static bool BasicIO_NoColor = false;
|
||||
|
||||
/// <summary>
|
||||
/// Determine whether WriteLineFormatted() should prepend lines with timestamps by default.
|
||||
/// </summary>
|
||||
|
|
@ -336,6 +341,10 @@ namespace MinecraftClient
|
|||
}
|
||||
if (BasicIO)
|
||||
{
|
||||
if (BasicIO_NoColor)
|
||||
{
|
||||
str = ChatBot.GetVerbatim(str);
|
||||
}
|
||||
Console.WriteLine(str);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue