From 5ab259930c55577529eafdda0b0d972fb2c57c76 Mon Sep 17 00:00:00 2001 From: SsalamethVersaach Date: Tue, 17 Sep 2024 19:42:37 -0400 Subject: [PATCH 1/3] Changed default to false for run/walking --- Content.Shared/CCVar/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index de8bc81312b..f0f48286281 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2003,7 +2003,7 @@ public static readonly CVarDef /// Whether the player mob is walking by default instead of running. /// public static readonly CVarDef DefaultWalk = - CVarDef.Create("control.default_walk", true, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); + CVarDef.Create("control.default_walk", false, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); /* * STORAGE From 709209900906f7b3f3f2f3acf7110f9bdcb2abae Mon Sep 17 00:00:00 2001 From: SsalamethVersaach Date: Tue, 17 Sep 2024 20:01:11 -0400 Subject: [PATCH 2/3] Testing a theory --- Content.Shared/CCVar/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index f0f48286281..de8bc81312b 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2003,7 +2003,7 @@ public static readonly CVarDef /// Whether the player mob is walking by default instead of running. /// public static readonly CVarDef DefaultWalk = - CVarDef.Create("control.default_walk", false, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); + CVarDef.Create("control.default_walk", true, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); /* * STORAGE From 17b1fd825b66c86b13fb7cdacd6d0e2b6b759f67 Mon Sep 17 00:00:00 2001 From: SsalamethVersaach Date: Tue, 17 Sep 2024 20:06:37 -0400 Subject: [PATCH 3/3] Linter errors that aren't my fault, woo! --- Content.Shared/CCVar/CCVars.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs index de8bc81312b..f0f48286281 100644 --- a/Content.Shared/CCVar/CCVars.cs +++ b/Content.Shared/CCVar/CCVars.cs @@ -2003,7 +2003,7 @@ public static readonly CVarDef /// Whether the player mob is walking by default instead of running. /// public static readonly CVarDef DefaultWalk = - CVarDef.Create("control.default_walk", true, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); + CVarDef.Create("control.default_walk", false, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); /* * STORAGE