Skip to content
Snippets Groups Projects
Commit ec44fa3f authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

modopts.ini setting to disable new-user survey question

Set survey=false in the [newuser] section of modopts.ini to disable the
"Where did you hear about this BBS?" new user question.
parent ba6c926f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -28,7 +28,7 @@ if(options.send_newuser_welcome) // backwards compatibility hack
console.clear();
if(!user.address.length && user.number>1) {
if(!user.address.length && user.number>1 && options.survey !== false) {
print("\1y\1hWhere did you hear about this BBS?");
user.address=console.getstr(30,K_LINE);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment