From 84afeed8af6b439523677efd56f488da265213a0 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Mon, 11 May 2020 14:14:50 -0400 Subject: [PATCH] Fix OOC notes requirement --- code/modules/mob/new_player/new_player_vr.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/new_player/new_player_vr.dm b/code/modules/mob/new_player/new_player_vr.dm index 1c56e278f8e..a317e9a0d9b 100644 --- a/code/modules/mob/new_player/new_player_vr.dm +++ b/code/modules/mob/new_player/new_player_vr.dm @@ -12,8 +12,8 @@ pass = FALSE //No OOC notes - if (config.allow_Metadata && !(client?.prefs?.metadata || length(client.prefs.metadata) < 15)) - to_chat(src,"Please set informative OOC notes related to ERP preferences. Set them using the 'OOC Notes' button on the 'General' tab in character setup.") + if (config.allow_Metadata && (!client?.prefs?.metadata || length(client.prefs.metadata) < 15)) + to_chat(src,"Please set informative OOC notes related to RP/ERP preferences. Set them using the 'OOC Notes' button on the 'General' tab in character setup.") pass = FALSE //Are they on the VERBOTEN LIST?