Skip to content

Commit

Permalink
🩹 fix AIR speedo in air veh
Browse files Browse the repository at this point in the history
  • Loading branch information
Horváth Gellért committed Jun 22, 2023
1 parent ca224f8 commit d8679e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/vehicle/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ if not Config.Disable.Vehicle then
inVehicle = true
HUD.Data.Driver = currentSeat == -1 or false
HUD.Data.Vehicle = currentVehicle
vehicleType = vehicleClass == 15 or vehicleClass == 16 and 'AIR' or 'LAND'

vehicleType = (vehicleClass == 15 or vehicleClass == 16) and 'AIR' or 'LAND'
-- We have to check if he changed seat meantime
driverCheckThread(currentVehicle)

Expand Down

0 comments on commit d8679e1

Please sign in to comment.