Refactor: Removes indenting, reduces to one line (#899)

This commit is contained in:
Joel
2022-12-21 15:42:45 +00:00
committed by GitHub
parent c79a7b907a
commit a96052ee26
+3 -4
View File
@@ -2,8 +2,8 @@ QBShared = QBShared or {}
QBShared.ForceJobDefaultDutyAtLogin = true -- true: Force duty state to jobdefaultDuty | false: set duty state from database last saved
QBShared.QBJobsStatus = false -- true: integrate qb-jobs into the whole of qb-core | false: treat qb-jobs as an add-on resource.
QBShared.Jobs = {} -- All of below has been migrated into qb-jobs
if not QBShared.QBJobsStatus then
QBShared.Jobs = {
if QBShared.QBJobsStatus then return end
QBShared.Jobs = {
['unemployed'] = {
label = 'Civilian',
defaultDuty = true,
@@ -284,5 +284,4 @@ if not QBShared.QBJobsStatus then
},
},
},
}
end
}