mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Add non-emoji representation for /chunk status
This commit is contained in:
parent
b976550828
commit
bfd01a5f78
4 changed files with 14 additions and 5 deletions
|
|
@ -109,6 +109,7 @@ namespace MinecraftClient
|
|||
public static bool MinecraftRealmsEnabled = true;
|
||||
public static bool MoveHeadWhileWalking = true;
|
||||
public static int Timeout = 30;
|
||||
public static bool EnableEmoji = true;
|
||||
|
||||
// Signature
|
||||
public static bool LoginWithSecureProfile = true;
|
||||
|
|
@ -388,6 +389,7 @@ namespace MinecraftClient
|
|||
case "minecraftrealms": MinecraftRealmsEnabled = str2bool(argValue); return true;
|
||||
case "moveheadwhilewalking": MoveHeadWhileWalking = str2bool(argValue); return true;
|
||||
case "timeout": Timeout = str2int(argValue); return true;
|
||||
case "enableemoji": EnableEmoji = str2bool(argValue); return true;
|
||||
|
||||
case "botowners":
|
||||
Bots_Owners.Clear();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue