diff --git a/src/k_bot.c b/src/k_bot.c index 899a70eb1..a32a554e1 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -473,10 +473,6 @@ fixed_t K_BotTopSpeedRubberband(player_t *player) --------------------------------------------------*/ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) { -#if 1 - (void)player; - return frict; -#else fixed_t rubberband = K_BotRubberband(player) - FRACUNIT; fixed_t newfrict; @@ -494,7 +490,6 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) newfrict = FRACUNIT; return newfrict; -#endif } /*-------------------------------------------------- diff --git a/src/p_user.c b/src/p_user.c index 6c6c0578a..8065ae13b 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -1941,11 +1941,6 @@ static void P_3dMovement(player_t *player) totalthrust.x += P_ReturnThrustX(player->mo, movepushangle, movepushforward); totalthrust.y += P_ReturnThrustY(player->mo, movepushangle, movepushforward); - - if (K_PlayerUsesBotMovement(player) == true) - { - K_MomentumToFacing(player); - } } if ((totalthrust.x || totalthrust.y)