diff --git a/src/g_demo.cpp b/src/g_demo.cpp
index db33917073ab8495d6ab1f930e4f78ad51a71ba6..f73407198c46d286b1f74a4699c0403c0bfaa57c 100644
--- a/src/g_demo.cpp
+++ b/src/g_demo.cpp
@@ -166,8 +166,12 @@ demoghost *ghosts = NULL;
 //   - A bug was preventing control after ending a drift.
 //     Older behavior is kept around for staff ghost compat.
 //   - Also, polyobject bounce-back was fixed!
+// - 0x000B (Ring Racers v2.1 + In dev revisions)
+//   - SPB cup TA replays were recorded at this time
+//   - Slope physics changed with a scaling fix
+// - 0x000C (Ring Racers v2.2)
 
-#define DEMOVERSION 0x000B
+#define DEMOVERSION 0x000C
 
 boolean G_CompatLevel(UINT16 level)
 {
diff --git a/src/p_user.c b/src/p_user.c
index 4a36b19ae34b2616db8116955eaf2cb8f489fab0..bec4a06a6c7a9351bbc0556cc064b48260b719de 100644
--- a/src/p_user.c
+++ b/src/p_user.c
@@ -1917,7 +1917,11 @@ static void P_3dMovement(player_t *player)
 	vector3_t totalthrust;
 
 	totalthrust.x = totalthrust.y = 0; // I forget if this is needed
-	totalthrust.z = FixedMul(mapobjectscale, K_GrowShrinkSpeedMul(player))*P_MobjFlip(player->mo)/3; // A bit of extra push-back on slopes
+
+	if (G_CompatLevel(0x000B)) // Ring Racers 2.1 behavior
+		totalthrust.z = FRACUNIT*P_MobjFlip(player->mo)/3; // A bit of extra push-back on slopes
+	else
+		totalthrust.z = FixedMul(mapobjectscale, K_GrowShrinkSpeedMul(player))*P_MobjFlip(player->mo)/3; // A bit of extra push-back on slopes
 
 	if (K_SlopeResistance(player) == true)
 	{