From 438f05f7a33779cc4a1e024ae008e41910afcc6e Mon Sep 17 00:00:00 2001 From: RaveRadbury Date: Sun, 5 May 2019 13:16:04 -0700 Subject: [PATCH] Removes hull integrity as a payout factor for engineering --- code/controllers/subsystem/economy.dm | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/code/controllers/subsystem/economy.dm b/code/controllers/subsystem/economy.dm index 3773fad3c02..90244108bf3 100644 --- a/code/controllers/subsystem/economy.dm +++ b/code/controllers/subsystem/economy.dm @@ -15,7 +15,6 @@ SUBSYSTEM_DEF(economy) var/list/generated_accounts = list() var/full_ancap = FALSE // Enables extra money charges for things that normally would be free, such as sleepers/cryo/cloning. //Take care when enabling, as players will NOT respond well if the economy is set up for low cash flows. - var/datum/station_state/engineering_check = new /datum/station_state() var/alive_humans_bounty = 100 var/crew_safety_bounty = 1500 var/monster_bounty = 150 @@ -56,7 +55,7 @@ SUBSYSTEM_DEF(economy) return ..() /datum/controller/subsystem/economy/fire(resumed = 0) - boring_eng_payout() // Payout based on integrity. + boring_eng_payout() // Payout based on nothing. What will replace it? Surplus power, powered APC's, air alarms? Who knows. boring_sci_payout() // Payout based on slimes. boring_secmedsrv_payout() // Payout based on crew safety, health, and mood. boring_civ_payout() // Payout based on ??? Profit @@ -72,10 +71,6 @@ SUBSYSTEM_DEF(economy) /datum/controller/subsystem/economy/proc/boring_eng_payout() var/engineering_cash = 3000 - engineering_check.count() - var/station_integrity = min(PERCENT(GLOB.start_state.score(engineering_check)), 100) - station_integrity *= 0.01 - engineering_cash *= station_integrity var/datum/bank_account/D = get_dep_account(ACCOUNT_ENG) if(D) D.adjust_money(engineering_cash) @@ -132,4 +127,4 @@ SUBSYSTEM_DEF(economy) /datum/controller/subsystem/economy/proc/boring_civ_payout() var/datum/bank_account/D = get_dep_account(ACCOUNT_CIV) if(D) - D.adjust_money((rand(1,5) * 500)) \ No newline at end of file + D.adjust_money((rand(1,5) * 500))