From 9b408206ec2fdc3bb24d3aa00ffa4b9ab1777621 Mon Sep 17 00:00:00 2001 From: KathrinBailey <53862927+KathrinBailey@users.noreply.github.com> Date: Sun, 28 Feb 2021 15:21:12 +0000 Subject: [PATCH] Prisoner flavour text (#3713) * Updates all maps to TG standards Massive changes and bugfixes from TG ported over to our maps. Sorry for whoever I conflict. * Missed Icebox Heaters PR * Latejoin text to prisoners * examples of shittery because I was asked to hopefully people read this * Update code/modules/jobs/job_types/prisoner.dm Co-authored-by: Gandalf Co-authored-by: Gandalf --- code/modules/jobs/job_types/prisoner.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/jobs/job_types/prisoner.dm b/code/modules/jobs/job_types/prisoner.dm index 393a20a11c8..5b8d73ee5f1 100644 --- a/code/modules/jobs/job_types/prisoner.dm +++ b/code/modules/jobs/job_types/prisoner.dm @@ -20,3 +20,11 @@ id = /obj/item/card/id/prisoner ears = null belt = null +// SKYRAT EDIT: Start - Adds spawn text to prisoners. +/datum/job/prisoner/after_spawn(mob/living/carbon/human/H, mob/M) + . = ..() + to_chat(M, "You MUST ahelp before attempting breakouts or rioting. Being a shitter = perma prisoner job-ban.") + to_chat(M, "Being a shitter includes but is not limited to: Critting other prisoners, constantly breaking things, and occupying too much of security's time as a result. Remember: You aren't an antagonist.") + to_chat(M, "You are a prisoner being held in Space Station 13, awaiting transfer to a secure prison facility or to the courthouse to stand trial.") + to_chat(M, "It's up to you to decide why you're in here. Chances are, the case against you might not be strong enough to convict you. Or is it?
") +// SKYRAT EDIT : End - Adds spawn text to prisoners.