mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-18 15:32:10 +00:00
Fix dash-dust spawning not happening when drop-dashing, despite its function being called.
This commit is contained in:
parent
7f5b5ecb60
commit
fb102f8131
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue