From 50f4bb6b0b88bd2d975d63e110f192fee6f9be89 Mon Sep 17 00:00:00 2001 From: LuKP17 Date: Sat, 11 Nov 2023 12:33:50 +0100 Subject: [PATCH] Ship drawn when rescued in internal view --- src/wipeout/ship.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wipeout/ship.c b/src/wipeout/ship.c index ab3dede..f8448d0 100644 --- a/src/wipeout/ship.c +++ b/src/wipeout/ship.c @@ -154,7 +154,7 @@ void ships_draw(void) { // Ship models for (int i = 0; i < len(g.ships); i++) { 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) ) { continue;