So that research doesn't become stupid rich for their job

This commit is contained in:
Crazylemon64
2016-03-09 20:51:47 -08:00
parent f2e21ab267
commit 3d2de0a3ad
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -114,6 +114,7 @@
msg="We see that you completed [newunits] new unit[newunits>1?"s":""] for Task #[count]! "
pay=objective.completion_payment * newunits
objective.units_compensated += newunits
objective.is_completed() // So we don't get many messages regarding completion
else if(!objective.completed)
if(objective.is_completed())
pay=objective.completion_payment
@@ -124,7 +125,7 @@
var/datum/transaction/T = new()
T.target_name = "[command_name()] Payroll"
T.purpose = "Payment"
T.amount = objective.completion_payment
T.amount = pay
T.date = current_date_string
T.time = worldtime2text()
T.source_terminal = "\[CLASSIFIED\] Terminal #[rand(111,333)]"
+2 -2
View File
@@ -4,8 +4,8 @@
// MAXIMUM SCIENCE
/datum/job_objective/further_research
completion_payment = 50
per_unit = 5
completion_payment = 5
per_unit = 1
/datum/job_objective/further_research/get_description()
var/desc = "Research tech levels, and have cargo ship them to centcomm."