From 29ca2b6062e8d43bcde02bba71f4450ad15a8e8b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 29 Jan 2020 03:51:47 -0500 Subject: [PATCH] CPlayer: Add missing element to skDashStrafeDistances This was previously missing the initial element within the array, causing all the elements in the table to be shifted to the left by one. This corrects that. --- Runtime/World/CPlayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/World/CPlayer.cpp b/Runtime/World/CPlayer.cpp index 6436886f2..8f2dc634a 100644 --- a/Runtime/World/CPlayer.cpp +++ b/Runtime/World/CPlayer.cpp @@ -57,7 +57,7 @@ constexpr std::array skStrafeDistances{ }; constexpr std::array skDashStrafeDistances{ - 30.0f, 22.6f, 10.0f, 10.0f, 10.0f, 10.0f, 10.0f, + 11.8f, 30.0f, 22.6f, 10.0f, 10.0f, 10.0f, 10.0f, 10.0f, }; constexpr std::array skOrbitForwardDistances{