mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Restore to previous movement speed
This commit is contained in:
parent
53898f3446
commit
b97b226166
3 changed files with 7 additions and 5 deletions
|
|
@ -110,6 +110,7 @@ namespace MinecraftClient
|
|||
public static bool MoveHeadWhileWalking = true;
|
||||
public static int Timeout = 30;
|
||||
public static bool EnableEmoji = true;
|
||||
public static int MovementSpeed = 2;
|
||||
|
||||
// Signature
|
||||
public static bool LoginWithSecureProfile = true;
|
||||
|
|
@ -426,6 +427,7 @@ namespace MinecraftClient
|
|||
case "moveheadwhilewalking": MoveHeadWhileWalking = str2bool(argValue); return true;
|
||||
case "timeout": Timeout = str2int(argValue); return true;
|
||||
case "enableemoji": EnableEmoji = str2bool(argValue); return true;
|
||||
case "movementspwwd": MovementSpeed = str2int(argValue); return true;
|
||||
|
||||
case "botowners":
|
||||
Bots_Owners.Clear();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue