The real problem

This commit is contained in:
Sally Coolatta 2020-11-16 18:35:07 -05:00
parent 082d253553
commit 6a4eb721bd
2 changed files with 0 additions and 10 deletions

View file

@ -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
}
/*--------------------------------------------------

View file

@ -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)