diff --git a/code/controllers/subsystem/economy.dm b/code/controllers/subsystem/economy.dm index fc3fc0459b03..14e5fbbf1665 100644 --- a/code/controllers/subsystem/economy.dm +++ b/code/controllers/subsystem/economy.dm @@ -155,8 +155,11 @@ SUBSYSTEM_DEF(economy) if(moneysink) engineering_cash += moneysink.payout() var/datum/bank_account/D = get_dep_account(ACCOUNT_ENG) + var/datum/bank_account/C = get_dep_account(ACCOUNT_CAR) if(D) D.adjust_money(engineering_cash) + if(C) + C.adjust_money(engineering_cash*0.5) /datum/controller/subsystem/economy/proc/car_payout()