Fixes borgs radio help message (#40569)

* Fixes borgs radio help message

* Changed wording a bit.

* grammer
This commit is contained in:
AnturK
2018-10-03 10:09:59 +13:00
committed by oranges
parent 20d0657be6
commit 44b30e29e0
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -429,7 +429,7 @@ SUBSYSTEM_DEF(job)
to_chat(M, "<b>You are the [rank].</b>")
if(job)
to_chat(M, "<b>As the [rank] you answer directly to [job.supervisors]. Special circumstances may change this.</b>")
to_chat(M, "<b>To speak on your departments radio, use the :h button. To see others, look closely at your headset.</b>")
job.radio_help_message(M)
if(job.req_admin_notify)
to_chat(M, "<b>You are playing a job that is important for Game Progression. If you have to disconnect, please notify the admins via adminhelp.</b>")
if(CONFIG_GET(number/minimal_access_threshold))
+2
View File
@@ -147,6 +147,8 @@
/datum/job/proc/map_check()
return TRUE
/datum/job/proc/radio_help_message(mob/M)
to_chat(M, "<b>Prefix your message with :h to speak on your department's radio. To see other prefixes, look closely at your headset.</b>")
/datum/outfit/job
name = "Standard Gear"
+3
View File
@@ -87,3 +87,6 @@ Cyborg
/datum/job/cyborg/after_spawn(mob/living/silicon/robot/R, mob/M)
R.updatename(M.client)
R.gender = NEUTER
/datum/job/cyborg/radio_help_message(mob/M)
to_chat(M, "<b>Prefix your message with :b to speak with other cyborgs and AI.</b>")