Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mafewtm committed Dec 10, 2023
1 parent 1ba4401 commit ba420a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions config/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ return {
},

registerRefresh = {
min = 420000,
max = 90000,
min = 90000,
max = 420000,
},

SafeReward = {
safeReward = {
markedBillsAmount = {
min = 1,
max = 3,
Expand Down
2 changes: 1 addition & 1 deletion server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ RegisterNetEvent('qbx_storerobbery:server:safeCracked', function()
end
startedSafe[source] = false
TriggerClientEvent('qbx_storerobbery:client:updatedRobbables', -1, sharedConfig.registers, sharedConfig.safes)
SetTimeout(math.random(config.safeRefresh.min, config.safeRefresh.wax), function()
SetTimeout(math.random(config.safeRefresh.min, config.safeRefresh.max), function()
sharedConfig.safes[closestSafeIndex].robbed = false
TriggerClientEvent('qbx_storerobbery:client:updatedRobbables', -1, sharedConfig.registers, sharedConfig.safes)
end)
Expand Down

0 comments on commit ba420a6

Please sign in to comment.