From 32084502ce00185cf04b8ebeaa9b553b1a3d8d51 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Tue, 7 Feb 2017 10:41:46 +0000 Subject: [PATCH] This makes more sense. --- src/p_user.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/p_user.c b/src/p_user.c index 95f1f0482..385b361b1 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -9230,11 +9230,7 @@ void P_PlayerThink(player_t *player) else if (cmd->forwardmove || cmd->sidemove) // only when you're pressing movement keys { #if 1 - if (!((player->pflags & PF_SPINNING) - || ((player->pflags & PF_THOKKED) - && (player->charability == CA_THOK - || player->charability == CA_HOMINGTHOK - || player->charability == CA_JUMPTHOK))) + if (!(player->pflags & (PF_JUMPED|PF_SPINNING)) #else if ((player->mo->movefactor < FRACUNIT) // hilarious absence of traction! || (player->powers[pw_pushing])