mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-07 15:33:24 +00:00
Appease C91
This commit is contained in:
parent
8c5e725a8d
commit
96e098b451
1 changed files with 4 additions and 3 deletions
|
|
@ -3872,12 +3872,13 @@ void K_DropItems(player_t *player)
|
|||
|
||||
void K_DropRocketSneaker(player_t *player)
|
||||
{
|
||||
if (!(player->mo && !P_MobjWasRemoved(player->mo) && player->mo->hnext && !P_MobjWasRemoved(player->mo->hnext)))
|
||||
return;
|
||||
|
||||
mobj_t *shoe = player->mo;
|
||||
fixed_t flingangle;
|
||||
boolean leftshoe = true; //left shoe is first
|
||||
|
||||
if (!(player->mo && !P_MobjWasRemoved(player->mo) && player->mo->hnext && !P_MobjWasRemoved(player->mo->hnext)))
|
||||
return;
|
||||
|
||||
while ((shoe = shoe->hnext) && !P_MobjWasRemoved(shoe))
|
||||
{
|
||||
if (shoe->type != MT_ROCKETSNEAKER)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue