From 890ad97655dc04d5a58756ddb23bf866ecfb7458 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Wed, 30 Sep 2020 20:58:09 +0200 Subject: [PATCH 1/3] Gives off-duty explorers payraise. --- code/game/jobs/job/exploration_vr.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/jobs/job/exploration_vr.dm b/code/game/jobs/job/exploration_vr.dm index d555c531a2b..329e4095c59 100644 --- a/code/game/jobs/job/exploration_vr.dm +++ b/code/game/jobs/job/exploration_vr.dm @@ -130,6 +130,7 @@ var/const/SAR =(1<<14) outfit_type = /decl/hierarchy/outfit/job/assistant/explorer job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_EXPLORATION + economic_modifier = 6 /datum/alt_title/offduty_exp - title = "Off-duty Explorer" \ No newline at end of file + title = "Off-duty Explorer" From a65a448c0703fb4bb741ffa1bf7d946bc9167e13 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Wed, 30 Sep 2020 20:58:58 +0200 Subject: [PATCH 2/3] Increases off-duty pay to match department lowest. --- code/game/jobs/job/offduty_vr.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/game/jobs/job/offduty_vr.dm b/code/game/jobs/job/offduty_vr.dm index 416543956c5..fa7e94f5a19 100644 --- a/code/game/jobs/job/offduty_vr.dm +++ b/code/game/jobs/job/offduty_vr.dm @@ -16,6 +16,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/worker job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_CIVILIAN + economic_modifier = 2 /datum/alt_title/offduty_civ title = "Off-duty Worker" @@ -34,6 +35,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/cargo job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_CARGO + economic_modifier = 2 /datum/alt_title/offduty_crg title = "Off-duty Cargo" @@ -52,6 +54,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/engineer job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_ENGINEERING + economic_modifier = 5 /datum/alt_title/offduty_eng title = "Off-duty Engineer" @@ -70,6 +73,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/medic job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_MEDICAL + economic_modifier = 5 /datum/alt_title/offduty_med title = "Off-duty Medic" @@ -88,6 +92,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/scientist job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_SCIENCE + economic_modifier = 5 /datum/alt_title/offduty_sci title = "Off-duty Scientist" @@ -106,6 +111,7 @@ outfit_type = /decl/hierarchy/outfit/job/assistant/officer job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_SECURITY + economic_modifier = 4 /datum/alt_title/offduty_sec title = "Off-duty Officer" From 61e6324dbf9db8ed73f0601e7046bad2ea132da6 Mon Sep 17 00:00:00 2001 From: Runa Dacino Date: Wed, 30 Sep 2020 21:08:57 +0200 Subject: [PATCH 3/3] Lowered from 6 to 5. I skimmed over pilot, and saw a six. --- code/game/jobs/job/exploration_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/exploration_vr.dm b/code/game/jobs/job/exploration_vr.dm index 329e4095c59..7f3b57f0b1f 100644 --- a/code/game/jobs/job/exploration_vr.dm +++ b/code/game/jobs/job/exploration_vr.dm @@ -130,7 +130,7 @@ var/const/SAR =(1<<14) outfit_type = /decl/hierarchy/outfit/job/assistant/explorer job_description = "Off-duty crew has no responsibilities or authority and is just there to spend their well-deserved time off." pto_type = PTO_EXPLORATION - economic_modifier = 6 + economic_modifier = 5 /datum/alt_title/offduty_exp title = "Off-duty Explorer"