Skip to content

Commit

Permalink
fix: correct vehicletype of model blimp
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFantomas committed Aug 15, 2023
1 parent 741ee9c commit bcf45cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions [core]/es_extended/client/functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1335,6 +1335,10 @@ function ESX.GetVehicleType(model)
return 'submarine'
end

if model == `blimp` then
return 'heli'
end

local vehicleType = GetVehicleClassFromName(model)
local types = {
[8] = "bike",
Expand Down

0 comments on commit bcf45cd

Please sign in to comment.