From fbfa55c5fab3f44dcb2fb4c9dd955641846be9cf Mon Sep 17 00:00:00 2001 From: Rykka Date: Wed, 30 Mar 2022 06:19:38 -0600 Subject: [PATCH] Updates On-Death message to direct players to Autoresleever or wait. "You're dead! If you died as a result of vore, and no longer have a body (due to digestion), use the Auto Resleever! One can be found by using the verb in the Ghost tab. If you died to other means, wait for rescue or use the 'Notify Transcore' verb in the Ghost tab if you have a valid backup implant. If it's been 30 minutes and you're still dead, use the Auto Resleever! 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." This will make it easier for newer players in particular to be aware that an auto-resleever exists, and direct them to it for use. --- 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..68cd164e70 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 died as a result of vore, and no longer have a body (due to digestion), use the Auto Resleever! One can be found by using the verb in the Ghost tab. If you died to other means, wait for rescue or use the 'Notify Transcore' verb in the Ghost tab if you have a valid backup implant. If it's been 30 minutes and you're still dead, use the Auto Resleever! 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.") return TRUE