Add toggle to head movement while walking (#1805)

* Add toggle to head movement while walking

* correct typo

* Correcting the correcting

* Improve description.

Co-authored-by: ReinforceZwei <39955851+ReinforceZwei@users.noreply.github.com>

Co-authored-by: ReinforceZwei <39955851+ReinforceZwei@users.noreply.github.com>
This commit is contained in:
Daenges 2021-10-29 06:45:30 +02:00 committed by GitHub
parent 8de7618027
commit 6928cd40fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View file

@ -101,6 +101,7 @@ namespace MinecraftClient
public static bool EntityHandling = false;
public static bool AutoRespawn = false;
public static bool MinecraftRealmsEnabled = true;
public static bool MoveHeadWhileWalking = true;
// Logging
public enum FilterModeEnum { Blacklist, Whitelist }
@ -368,6 +369,7 @@ namespace MinecraftClient
// Backward compatible so people can still enable debug with old config format
case "debugmessages": DebugMessages = str2bool(argValue); return true;
case "minecraftrealms": MinecraftRealmsEnabled = str2bool(argValue); return true;
case "moveheadwhilewalking": MoveHeadWhileWalking = str2bool(argValue); return true;
case "botowners":
Bots_Owners.Clear();