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

Fix inverted logic of noyes() prompt in previous commit.

parent 733ddc69
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #681 passed
...@@ -536,7 +536,7 @@ bool sbbs_t::logon() ...@@ -536,7 +536,7 @@ bool sbbs_t::logon()
if(online==ON_REMOTE) if(online==ON_REMOTE)
rioctl(IOSM|ABORT); /* Turn abort ability on */ rioctl(IOSM|ABORT); /* Turn abort ability on */
if(text[ReadYourMailNowQ][0] && mailw) { if(text[ReadYourMailNowQ][0] && mailw) {
if((mailw == mailr && noyes(text[ReadYourMailNowQ])) if((mailw == mailr && !noyes(text[ReadYourMailNowQ]))
|| (mailw != mailr && yesno(text[ReadYourMailNowQ]))) || (mailw != mailr && yesno(text[ReadYourMailNowQ])))
readmail(useron.number,MAIL_YOUR); readmail(useron.number,MAIL_YOUR);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment