From 1d157c4e3c25b956d4d92369ef80b9f1bc69f781 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Thu, 11 Jan 2024 20:57:54 -0700 Subject: [PATCH] Don't use Easy slope assist in tutorials --- src/p_slopes.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/p_slopes.c b/src/p_slopes.c index 7c107b343..ad6714acb 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -1173,7 +1173,8 @@ void P_ButteredSlope(mobj_t *mo) // Easy / Battle: SUPER NERF slope climbs, so that they're usually possible without resources. // (New players suck at budgeting, and may not remember they have spindash / rings at all!) - if (gamespeed == KARTSPEED_EASY) + // Special exception for Tutorial because we're trying to teach slope mechanics there. + if (gamespeed == KARTSPEED_EASY && gametype != GT_TUTORIAL) { // Same as above, but use facing angle: angle_t easyangle = mo->angle - mo->standingslope->xydirection;