From 335199b55b534e2bf60a53b7b062a5cfd47a5f16 Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Wed, 21 Feb 2024 03:08:23 -0600 Subject: [PATCH] fixes new players getting an unusable verb (#24251) --- code/modules/mob/new_player/new_player.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index c6fcb7e8fce6..a425bc934ca6 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -24,13 +24,12 @@ mind.current = null // We best null their mind as well, otherwise /every/ single new player is going to explode the server a little more going in/out of the round return ..() -/mob/new_player/verb/new_player_panel() +/mob/new_player/proc/new_player_panel() if(client.tos_consent || GLOB.configuration.system.external_tos_handler) new_player_panel_proc() else privacy_consent() - /mob/new_player/proc/privacy_consent() var/output = GLOB.join_tos // Dont blank out the other window. This one is read only. @@ -47,7 +46,6 @@ popup.open(0) return - /mob/new_player/proc/new_player_panel_proc() set waitfor = FALSE var/real_name = client.prefs.active_character.real_name