Ship drawn when rescued in internal view

This commit is contained in:
LuKP17 2023-11-11 12:33:50 +01:00
parent 776837edb0
commit 50f4bb6b0b

View file

@ -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;