Newly added object files: Fix trailing whitespace + EOF newline

This commit is contained in:
toaster 2023-09-26 22:04:14 +01:00
parent bee1cb9a04
commit 490959b6f7
8 changed files with 328 additions and 331 deletions

View file

@ -108,7 +108,6 @@ void Obj_playerDLZRocket(player_t *p)
arr->tics = 2; arr->tics = 2;
} }
// calc max speed // calc max speed
if (p->ringboost) if (p->ringboost)
maxspd += 10; maxspd += 10;
@ -122,7 +121,6 @@ void Obj_playerDLZRocket(player_t *p)
else if (p->dlzrocketspd > maxspd) else if (p->dlzrocketspd > maxspd)
p->dlzrocket--; p->dlzrocket--;
// so long as PF_STASIS is applied, let the angle be overwritten freely. // so long as PF_STASIS is applied, let the angle be overwritten freely.
// this is used by seasaws but can be used for misc modding purposes too. // this is used by seasaws but can be used for misc modding purposes too.
if (p->pflags & PF_STASIS) if (p->pflags & PF_STASIS)
@ -200,5 +198,4 @@ void Obj_playerDLZRocket(player_t *p)
if ((p->dlzrocket > 10 && (P_IsObjectOnGround(p->mo) || p->mo->eflags & MFE_JUSTBOUNCEDWALL)) if ((p->dlzrocket > 10 && (P_IsObjectOnGround(p->mo) || p->mo->eflags & MFE_JUSTBOUNCEDWALL))
|| p->spinouttimer || p->wipeoutslow || p->tumbleHeight) || p->spinouttimer || p->wipeoutslow || p->tumbleHeight)
Obj_DLZRocketDismount(p); Obj_DLZRocketDismount(p);
} }