From 33c6d0d414ffcb849d9ec4c5afb622550fcf2535 Mon Sep 17 00:00:00 2001 From: buntyverma69 <72088153+buntyverma69@users.noreply.github.com> Date: Sat, 26 Feb 2022 19:51:09 +0530 Subject: [PATCH] Fixed helicopters not going air depot i am trying to figure it out why helicopters not going air depot ! category names are miss matching with garages. --- shared/vehicles.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/shared/vehicles.lua b/shared/vehicles.lua index c0be86a..56fa9fb 100644 --- a/shared/vehicles.lua +++ b/shared/vehicles.lua @@ -4181,13 +4181,13 @@ QBShared.Vehicles = { ['hash'] = `toro2`, ['shop'] = 'boats', }, - -- Helis + -- helicopters ['buzzard2'] = { ['name'] = 'Buzzard', ['brand'] = 'Unknown', ['model'] = 'buzzard2', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `buzzard2`, ['shop'] = 'air', }, @@ -4196,7 +4196,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'frogger', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `frogger`, ['shop'] = 'air', }, @@ -4205,7 +4205,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'frogger2', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `frogger2`, ['shop'] = 'air', }, @@ -4214,7 +4214,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'maverick', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `maverick`, ['shop'] = 'air', }, @@ -4223,7 +4223,7 @@ QBShared.Vehicles = { ['brand'] = 'Buckingham', ['model'] = 'swift', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `swift`, ['shop'] = 'air', }, @@ -4232,7 +4232,7 @@ QBShared.Vehicles = { ['brand'] = 'Buckingham', ['model'] = 'swift2', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `swift2`, ['shop'] = 'air', }, @@ -4241,7 +4241,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'seasparrow', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `seasparrow`, ['shop'] = 'air', }, @@ -4250,7 +4250,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'seasparrow2', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `seasparrow2`, ['shop'] = 'air', }, @@ -4259,7 +4259,7 @@ QBShared.Vehicles = { ['brand'] = 'Unknown', ['model'] = 'seasparrow3', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `seasparrow3`, ['shop'] = 'air', }, @@ -4268,7 +4268,7 @@ QBShared.Vehicles = { ['brand'] = 'Buckingham', ['model'] = 'supervolito', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `supervolito`, ['shop'] = 'air', }, @@ -4277,7 +4277,7 @@ QBShared.Vehicles = { ['brand'] = 'Buckingham', ['model'] = 'supervolito2', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `supervolito2`, ['shop'] = 'air', }, @@ -4286,7 +4286,7 @@ QBShared.Vehicles = { ['brand'] = 'Buckingham', ['model'] = 'volatus', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `volatus`, ['shop'] = 'air', }, @@ -4295,7 +4295,7 @@ QBShared.Vehicles = { ['brand'] = 'Nagasaki', ['model'] = 'havok', ['price'] = 52000, - ['category'] = 'helis', + ['category'] = 'helicopters', ['hash'] = `havok`, ['shop'] = 'air', }, @@ -4417,4 +4417,4 @@ QBShared.Vehicles = { ['hash'] = `nimbus`, ['shop'] = 'air', }, -} \ No newline at end of file +}