From f950424785e1ba80ac0a8f1c66db58e87f92abbc Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 10 Nov 2020 16:00:19 +0000 Subject: [PATCH] more text changes --- code/modules/mob/dead/new_player/new_player.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/dead/new_player/new_player.dm b/code/modules/mob/dead/new_player/new_player.dm index b379978783..91123c0c7f 100644 --- a/code/modules/mob/dead/new_player/new_player.dm +++ b/code/modules/mob/dead/new_player/new_player.dm @@ -85,10 +85,10 @@ return FALSE else var/dbflags = client.prefs.db_flags - if(dbflags & DB_FLAG_AGE_CONFIRMATION_INCOMPLETE) //they have not completed age verification - var/age_verification = askuser(src, "Are you 18+", "Age Verification", "I am 18+", "I am not 18+", null, TRUE, null) + if(dbflags & DB_FLAG_AGE_CONFIRMATION_INCOMPLETE) //they have not completed age gate + var/age_verification = askuser(src, "Are you 18+", "Age Gate", "I am 18+", "I am not 18+", null, TRUE, null) if(age_verification != 1) - client.add_system_note("Automated-Age-Verification", "Failed automatic age gate process") + client.add_system_note("Automated-Age-Gate", "Failed automatic age gate process") qdel(client) //kick the user return FALSE else