Skip to content

Commit

Permalink
new late join verb
Browse files Browse the repository at this point in the history
  • Loading branch information
skeyuui committed Aug 19, 2024
1 parent 7ca9728 commit a2f8b01
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions code/modules/client/verbs/ooc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit a2f8b01

Please sign in to comment.