diff --git a/scripts/server/economy.js b/scripts/server/economy.js index 50661d2a..f67cc96d 100644 --- a/scripts/server/economy.js +++ b/scripts/server/economy.js @@ -33,6 +33,11 @@ function playerPayDay(client) { // Passive income grossIncome = Math.round(grossIncome + getGlobalConfig().economy.passiveIncomePerPayDay); + // Job Pay + if (getPlayerJob(client) != -1) { + grossIncome = Math.round(grossIncome + getJobRankData(getPlayerJob(client), getPlayerJobRank(client)).pay); + } + // Payday bonus grossIncome = Math.round(grossIncome * getGlobalConfig().economy.grossIncomeMultiplier);