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.