From 16e3e405330f8dc00ba68ab4513346ef526d9bc6 Mon Sep 17 00:00:00 2001 From: iramoye Date: Sat, 7 Feb 2026 23:07:52 -0600 Subject: [PATCH] updates the thing (#31599) --- code/modules/mob/new_player/new_player.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 3a31c0897fa..3c3eb33d36c 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -168,7 +168,7 @@ to_chat(usr, SPAN_WARNING("You must wait for the server to finish starting before you can join!")) return FALSE - if(alert(usr, "Are you sure you wish to observe? You cannot normally join the round after doing this!", "Observe", "Yes", "No") == "Yes") + if(alert(usr, "Are you sure you wish to observe? There may be a delay before you can attempt to rejoin.", "Observe", "Yes", "No") == "Yes") if(!client) return TRUE var/mob/dead/observer/observer = new(src, GHOST_FLAGS_START_AS_OBSERVER)