Fix dash-dust spawning not happening when drop-dashing, despite its function being called.

This commit is contained in:
toaster 2018-09-27 18:39:54 +01:00
parent 7f5b5ecb60
commit fb102f8131
1 changed files with 1 additions and 1 deletions

View File

@ -1277,7 +1277,7 @@ static void K_SpawnDashDustRelease(player_t *player)
if (!P_IsObjectOnGround(player->mo))
return;
if (player->speed == 0)
if (!player->speed && !player->kartstuff[k_startboost])
return;
travelangle = player->mo->angle;