From bcf45cdc4beecb349901250c818a197e0f9f113f Mon Sep 17 00:00:00 2001 From: TheFantomas <117121911+TheFantomas@users.noreply.github.com> Date: Tue, 15 Aug 2023 18:53:43 +0200 Subject: [PATCH] fix: correct vehicletype of model blimp --- [core]/es_extended/client/functions.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/[core]/es_extended/client/functions.lua b/[core]/es_extended/client/functions.lua index 508326b2..fa791cde 100644 --- a/[core]/es_extended/client/functions.lua +++ b/[core]/es_extended/client/functions.lua @@ -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",