Restore to previous movement speed

This commit is contained in:
BruceChen 2022-10-04 11:58:07 +08:00
parent 53898f3446
commit b97b226166
3 changed files with 7 additions and 5 deletions

View file

@ -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();