Skip to content

Commit

Permalink
Merge pull request #3 from s4t4n667/main
Browse files Browse the repository at this point in the history
Fixed issues
  • Loading branch information
stevoscriptsteam authored Jan 21, 2025
2 parents 7c057c6 + 887c8d9 commit 0326cc5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ return {
gradeRequired = 5,

vehicles = {
{model = 'police', label = 'Police Cruiser', icon = 'circle', iconColor = '#7a5f15'}
{model = 'police', label = 'Police Cruiser', icon = 'circle', iconColor = '#7a5f15', mods = {livery = 1, extras = {{id = 1, disabled = false}, {id = 2, disabled = true}}}}
}
}

Expand Down Expand Up @@ -93,7 +93,7 @@ return {
gradeRequired = 5,

vehicles = {
{model = 'police', label = 'Police Cruiser', icon = 'circle', iconColor = '#7a5f15'}
{model = 'police', label = 'Police Cruiser', icon = 'circle', iconColor = '#7a5f15', mods = {livery = 1, extras = {{id = 1, disabled = false}, {id = 2, disabled = true}}}}
}
}

Expand All @@ -108,11 +108,17 @@ return {
giveVehicleKeys = function(entity, plate)
-- Wasabi Carlock
-- exports.wasabi_carlock:GiveKey(plate)

-- qb/qbx_vehiclekeys
-- TriggerEvent("vehiclekeys:client:SetOwner", plate)
end,

removeVehicleKeys = function(entity, plate)
-- Wasabi Carlock
-- exports.wasabi_carlock:RemoveKey(plate)

-- qb/qbx_vehiclekeys
-- TriggerEvent("vehiclekeys:client:RemoveOwner", plate)
end,

}
}
2 changes: 1 addition & 1 deletion resource/client.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if not lib.checkDependency('stevo_lib', '1.7.2) then error('stevo_lib 1.7.2 required for stevo_jobgarages') end
if not lib.checkDependency('stevo_lib', '1.7.2') then error('stevo_lib 1.7.2 required for stevo_jobgarages') end
lib.locale()
local config = require('config')
local stevo_lib = exports['stevo_lib']:import()
Expand Down

0 comments on commit 0326cc5

Please sign in to comment.