From 242e128aa0e8e68d9ef34684cdeb48ef2fb9e02d Mon Sep 17 00:00:00 2001 From: lachwright Date: Tue, 21 Jul 2020 03:50:26 +0800 Subject: [PATCH] Fix Super Sonic exploiting CA_FLOAT abilities --- src/p_user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_user.c b/src/p_user.c index 679f4064b..3d36521d8 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -5536,7 +5536,7 @@ static void P_DoJumpStuff(player_t *player, ticcmd_t *cmd) if ((!(gametyperules & GTR_TEAMFLAGS) || !player->gotflag) && !player->exiting) { - if (player->secondjump == 1 && player->charability != CA_DOUBLEJUMP) + if (player->secondjump == 1 && player->charability != CA_DOUBLEJUMP && player->charability != CA_THOK) { fixed_t potentialmomz; if (player->charability == CA_SLOWFALL)