Merge pull request #19 from ElNelyo/master

Add Config.MaxSalary
This commit is contained in:
Don
2017-12-25 15:20:51 -08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -387,7 +387,7 @@ function OpenManageGradesMenu(society)
if amount == nil then
ESX.ShowNotification(_U('invalid_amount'))
elseif amount >= 3001 then
elseif amount >= Config.MaxSalary then
ESX.ShowNotification(_U('invalid_amount_max'))
else
menu2.close()
+1
View File
@@ -1,3 +1,4 @@
Config = {}
Config.Locale = 'fr'
Config.EnableESXIdentity = false
Config.MaxSalary = 3500