From 16024ca5598c65baf96470906b1f8253d55d02ba Mon Sep 17 00:00:00 2001 From: Alexsandro Percy Date: Sun, 2 Jul 2023 18:35:18 -0300 Subject: [PATCH] hud melhorado --- lib_planes/utilities.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib_planes/utilities.lua b/lib_planes/utilities.lua index 0386906..7c5959e 100644 --- a/lib_planes/utilities.lua +++ b/lib_planes/utilities.lua @@ -705,8 +705,8 @@ function airutils.seats_create(self) end self.pilot_seat_base = self._passengers_base[1] --sets pilot seat reference - if self._have_copilot and self.pilot_seat_base[2] then - self.co_pilot_seat_base = self.pilot_seat_base[2] --sets copilot seat reference + if self._have_copilot and self._passengers_base[2] then + self.co_pilot_seat_base = self._passengers_base[2] --sets copilot seat reference end end end