Skip to content

Commit

Permalink
Update client.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
L0stedMrlion committed Jun 18, 2024
1 parent 7ce159a commit bb152d1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions client/client.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
local props = Config.Props
local target = Config.Target

RegisterNetEvent('lion_trashbin:openTempStash', function(stashId)
exports.ox_inventory:openInventory('stash', stashId)
end)

exports.ox_target:addModel(props, target)
if Config.Target == "ox_target" then
exports.ox_target:addModel(props, Config.OXTarget)
end
if Config.Target == "qb-target" then
exports['qb-target']:AddTargetModel(props, Config.QBTarget)
end

0 comments on commit bb152d1

Please sign in to comment.