From 7d11b3d725699b5db939550b2186b0b3c95cc43e Mon Sep 17 00:00:00 2001 From: ev chang Date: Mon, 24 Jun 2024 17:39:42 +0700 Subject: [PATCH] set third person sneaking to on by default --- .../overflowanimations/config/OldAnimationsSettings.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/polyfrost/overflowanimations/config/OldAnimationsSettings.java b/src/main/java/org/polyfrost/overflowanimations/config/OldAnimationsSettings.java index e9d5789..6f99fc4 100644 --- a/src/main/java/org/polyfrost/overflowanimations/config/OldAnimationsSettings.java +++ b/src/main/java/org/polyfrost/overflowanimations/config/OldAnimationsSettings.java @@ -73,7 +73,7 @@ public class OldAnimationsSettings extends Config { description = "Synchronizes the player model's sneaking behavior to the eye height to replicate the same behavior in 1.7. Disable if incompatible with cosmetic mods", subcategory = "Smooth Sneaking" ) - public static boolean smoothModelSneak = false; + public static boolean smoothModelSneak = true; // Interaction @Switch( @@ -821,5 +821,6 @@ public OldAnimationsSettings() { addDependency("entityTransforms", "thirdTransformations"); // Sneaking addDependency("longerUnsneak", "smoothSneaking"); + addDependency("smoothModelSneak", "smoothSneaking"); } }