mirror of
https://github.com/phoboslab/wipeout-rewrite
synced 2024-12-26 09:59:04 +01:00
Ship drawn when rescued in internal view
This commit is contained in:
parent
776837edb0
commit
50f4bb6b0b
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ void ships_draw(void) {
|
||||||
// Ship models
|
// Ship models
|
||||||
for (int i = 0; i < len(g.ships); i++) {
|
for (int i = 0; i < len(g.ships); i++) {
|
||||||
if (
|
if (
|
||||||
flags_is(g.ships[i].flags, SHIP_VIEW_INTERNAL) ||
|
(flags_is(g.ships[i].flags, SHIP_VIEW_INTERNAL) && flags_not(g.ships[i].flags, SHIP_IN_RESCUE)) ||
|
||||||
(g.race_type == RACE_TYPE_TIME_TRIAL && i != g.pilot)
|
(g.race_type == RACE_TYPE_TIME_TRIAL && i != g.pilot)
|
||||||
) {
|
) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue