From a2f8b01df70e6f135260b9c8b18516809e580f4e Mon Sep 17 00:00:00 2001 From: skeeyui <19658265+skeyuui@users.noreply.github.com> Date: Sun, 18 Aug 2024 21:03:45 -0300 Subject: [PATCH] new late join verb --- code/modules/client/verbs/ooc.dm | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/code/modules/client/verbs/ooc.dm b/code/modules/client/verbs/ooc.dm index aaed0d45..aa7e4983 100644 --- a/code/modules/client/verbs/ooc.dm +++ b/code/modules/client/verbs/ooc.dm @@ -601,3 +601,14 @@ GLOBAL_VAR_INIT(normal_ooc_colour, "#002eb8") policytext += "No related rules found." usr << browse(policytext.Join(""),"window=policy") + +/mob/dead/new_player/verb/latejoin() + set name = "Late join" + set desc = "" + set category = "OOC" + + if(!SSticker?.IsRoundInProgress()) + to_chat(usr, span_boldwarning("The game is starting. You cannot join yet.")) + return + + LateChoices()