diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index 5725ff73d..60925bd20 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -261,9 +261,9 @@ dat += {"Role Job

"} dat += "[job.quest_info]

" - if (length(job.falure_info) > 0) - dat += {"Role Falure

"} - dat += "[job.falure_info]

" + if (length(job.failure_info) > 0) + dat += {"Role Failure

"} + dat += "[job.failure_info]

" if(client.prefs.roleplayroles) dat += "

Play!

" else diff --git a/hyperstation/code/modules/jobs/job_types/roleplay.dm b/hyperstation/code/modules/jobs/job_types/roleplay.dm index 7ca358aff..564d001c0 100644 --- a/hyperstation/code/modules/jobs/job_types/roleplay.dm +++ b/hyperstation/code/modules/jobs/job_types/roleplay.dm @@ -5,7 +5,7 @@ GLOBAL_LIST_INIT(roleplay_positions, list( /datum/job/roleplay/ var/info_text = "Debug Text on What the Job does." var/quest_info = "To be the very best, like noone ever was." - var/falure_info = "To suck." + var/failure_info = "To suck." department_flag = ROLEPLAY loadout = FALSE @@ -23,7 +23,7 @@ GLOBAL_LIST_EMPTY(rpcentralspawn) //required for late game spawning selection_color = "#ffeef0" info_text = "A offical from Central Command, performing a routine inspection of the station." quest_info = "Complete a routine check of the station, And make a write up for your bosses. The information collected should be submitted to Central Command before the end of the shift. Notify the crew ahead of time for initating." - falure_info = "Falure to fill in the form correctly will face severe penalties from Command." + failure_info = "Failure to fill in the form correctly will face severe penalties from Command." outfit = /datum/outfit/centcom_official override_roundstart_spawn = /obj/effect/landmark/start/rpcentral @@ -56,9 +56,12 @@ GLOBAL_LIST_EMPTY(prisionspawn) minimal_player_age = 1 supervisors = "security" selection_color = "#ffeef0" - info_text = "For one reason or another, you are a prisoner. Kinaris has chosen to temporarily hold you within Layenia Station's holding area" + info_text = "For one reason or another, you are a prisoner. Kinaris has chosen to temporarily hold you within Layenia Station's holding area, \ + until the end of the shift. You do not permanently reside here, but you may end up in this place from shift to shift. It is highly recommended to \ + make a unique character slot for this role. Kinaris would not neuter or otherwise remove identifying features that make you who you are; such as \ + altering your name, features, or physical appearance. As a prisoner, you still uphold a decent amount of rights." quest_info = "Do NOT attempt to break out, antagonize, or otherwise treat your role as anything to grief with. Should you find a scenario where you want to, AHELP." - falure_info = "" + failure_info = "" outfit = /datum/outfit/prisoner /datum/job/roleplay/prisoner/override_latejoin_spawn() @@ -77,4 +80,4 @@ GLOBAL_LIST_EMPTY(prisionspawn) /obj/effect/landmark/start/prisoner/Initialize(mapload) ..() GLOB.prisionspawn += loc - return INITIALIZE_HINT_QDEL \ No newline at end of file + return INITIALIZE_HINT_QDEL