From 946b76e93395d322ad8fb38e76f78002d84b60c4 Mon Sep 17 00:00:00 2001 From: VerySoft Date: Sat, 2 Apr 2022 22:31:41 -0400 Subject: [PATCH] Updates On-Death message based on https://github.com/VOREStation/VOREStation/pull/12569 I just didn't like the tone of their edit, so I made my own! --- code/modules/mob/dead/observer/free_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/dead/observer/free_vr.dm b/code/modules/mob/dead/observer/free_vr.dm index 54df25412b..2cfd6ad024 100644 --- a/code/modules/mob/dead/observer/free_vr.dm +++ b/code/modules/mob/dead/observer/free_vr.dm @@ -2,7 +2,7 @@ var/global/list/prevent_respawns = list() /hook/death/proc/quit_notify(mob/dead) if(ishuman(dead)) - to_chat(dead,"You're dead! If you don't intend to continue playing this round as this character, please use the Quit This Round verb in the OOC tab to free your job slot.") + to_chat(dead,"You're dead! If you don't intend to continue playing this round as this character, please use the Quit This Round verb in the OOC tab to free your job slot. Otherwise, you can use the Notify Transcore verb to let medical know you need resleeving, or Find Auto Resleever verb to be taken to an auto resleever, which you can click on to be resleeved automatically after a time.") return TRUE