mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 01:08:57 +00:00
Fixed Boats not going depot
I am trying to figure it out why Boats not going to boats depot ! category names are miss matching with garages.
This commit is contained in:
+20
-20
@@ -4018,13 +4018,13 @@ QBShared.Vehicles = {
|
||||
['hash'] = `warrener2`,
|
||||
['shop'] = 'pdm',
|
||||
},
|
||||
-- Boats
|
||||
-- Boats
|
||||
['squalo'] = {
|
||||
['name'] = 'Squalo',
|
||||
['brand'] = 'Shitzu',
|
||||
['model'] = 'squalo',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `squalo`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4033,7 +4033,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Dinka',
|
||||
['model'] = 'marquis',
|
||||
['price'] = 40000,
|
||||
['category'] = 'sail',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `marquis`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4042,7 +4042,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Speedophile',
|
||||
['model'] = 'seashark',
|
||||
['price'] = 40000,
|
||||
['category'] = 'jetski',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `seashark`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4051,7 +4051,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Speedophile',
|
||||
['model'] = 'seashark2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'jetski',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `seashark2`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4060,7 +4060,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Speedophile',
|
||||
['model'] = 'seashark3',
|
||||
['price'] = 40000,
|
||||
['category'] = 'jetski',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `seashark3`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4069,7 +4069,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Jetmax',
|
||||
['model'] = 'jetmax',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `jetmax`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4078,7 +4078,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Tropic',
|
||||
['model'] = 'tropic',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `tropic`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4087,7 +4087,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Tropic',
|
||||
['model'] = 'tropic2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `tropic2`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4096,7 +4096,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Dinghy',
|
||||
['model'] = 'dinghy',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `dinghy`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4105,7 +4105,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Dinghy',
|
||||
['model'] = 'dinghy2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `dinghy2`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4114,7 +4114,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Dinghy',
|
||||
['model'] = 'dinghy3',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `dinghy3`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4123,7 +4123,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Dinghy',
|
||||
['model'] = 'dinghy4',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `dinghy4`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4132,7 +4132,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Suntrap',
|
||||
['model'] = 'suntrap',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `suntrap`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4141,7 +4141,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Pegassi',
|
||||
['model'] = 'speeder',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `speeder`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4150,7 +4150,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Pegassi',
|
||||
['model'] = 'speeder2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `speeder2`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4159,7 +4159,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Shitzu',
|
||||
['model'] = 'longfin',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `longfin`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4168,7 +4168,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Lampadati',
|
||||
['model'] = 'toro',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `toro`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4177,7 +4177,7 @@ QBShared.Vehicles = {
|
||||
['brand'] = 'Lampadati',
|
||||
['model'] = 'toro2',
|
||||
['price'] = 40000,
|
||||
['category'] = 'speed',
|
||||
['category'] = 'boats',
|
||||
['hash'] = `toro2`,
|
||||
['shop'] = 'boats',
|
||||
},
|
||||
@@ -4417,4 +4417,4 @@ QBShared.Vehicles = {
|
||||
['hash'] = `nimbus`,
|
||||
['shop'] = 'air',
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user