From efa466fc2fc8a6343e9a914c43340c7cb0cebf53 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Sat, 22 Oct 2022 18:53:12 -0700 Subject: [PATCH] Make the "ask qnet" language even more clear/alarmist Somehow, new users on Vertrauen *still* manage to answer "Yes" to both the QWK Networking account questions, accidentally creating a QWKnet account that's not useful for normal BBS user activities. So print a very clear "alert" style message making it even-more clear that the account they are creating will ONLY be useful for QWK Networking activities. --- exec/newuser.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/exec/newuser.js b/exec/newuser.js index 7aa84fd932..1b37edfa13 100644 --- a/exec/newuser.js +++ b/exec/newuser.js @@ -36,9 +36,11 @@ if(!user.address.length && user.number>1 && options.survey !== false) { if(options.ask_qnet) { if(options.qnet_name==undefined) options.qnet_name="DOVE-Net"; - if(!console.noyes(format("\r\nIs this account to be used for QWK Networking (%s)\1b", options.qnet_name)) - && !console.noyes("\r\n\1bARE YOU \1wPOSITIVE\1n\1h\1b (If you're unsure, press '\1wN\1b')")) - qnet=true; + if(!console.noyes(format("\r\nIs this account to be used for QWK Networking (%s)\1b", options.qnet_name))) { + alert("\r\nThis acount will ONLY be useful for QWK Networking activities!"); + if(!console.noyes("\r\n\1bARE YOU \1wPOSITIVE\1n\1h\1b (If you're unsure, press '\1wN\1b')")) + qnet=true; + } } if(!qnet && (options.avatar || options.avatar_file)) { -- GitLab