From ff452d5be9d7c5dbe7cf89163869ae8c19b60140 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Wed, 25 Apr 2018 17:53:10 -0400 Subject: [PATCH] Undoes species economic modifiers from Polaris, leaves them all at the human amount --- code/game/jobs/job/job.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 1df53f3d17..f154b02094 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -61,7 +61,7 @@ if(CLASS_LOWER) income = 0.50 //give them an account in the station database - var/money_amount = (rand(15,40) + rand(15,40)) * income * economic_modifier * (H.species.economic_modifier) //VOREStation Edit - Smoothed peaks. + var/money_amount = (rand(15,40) + rand(15,40)) * income * economic_modifier * ECO_MODIFIER //VOREStation Edit - Smoothed peaks, ECO_MODIFIER rather than per-species ones. var/datum/money_account/M = create_account(H.real_name, money_amount, null) if(H.mind) var/remembered_info = ""