diff --git a/src/k_bot.c b/src/k_bot.c index a32a554e1..899a70eb1 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -473,6 +473,10 @@ 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; @@ -490,6 +494,7 @@ fixed_t K_BotFrictionRubberband(player_t *player, fixed_t frict) newfrict = FRACUNIT; return newfrict; +#endif } /*--------------------------------------------------