From 9c7d35ee26ea5f18dc50febaf3456fb711fe36d9 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Sat, 25 Nov 2023 22:23:10 +1100 Subject: [PATCH] A TYPO!!!!! --- source/game/StarInterpolationTracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/game/StarInterpolationTracker.cpp b/source/game/StarInterpolationTracker.cpp index 494c52e..fb1188c 100644 --- a/source/game/StarInterpolationTracker.cpp +++ b/source/game/StarInterpolationTracker.cpp @@ -13,7 +13,7 @@ InterpolationTracker::InterpolationTracker(Json config) { } m_interpolationEnabled = config.getBool("interpolationEnabled", false); - m_entityUpdateDelta = config.getUInt("enittyUpdateDelta", 3); + m_entityUpdateDelta = config.getUInt("entityUpdateDelta", 3); m_stepLead = config.getUInt("stepLead", 0); m_extrapolationHint = config.getUInt("extrapolationHint", 0); m_stepTrackFactor = config.getDouble("stepTrackFactor", 1.0);