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

Don't reset line counter after executing externals.

This behavior was cut/pasted from xtrn_sec.js but doesn't play well with logon events (e.g. SBBSIMSG list) that should pause before a following CLS. As reported by altere on the I, the R, and the C.
parent 721b6a54
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #682 passed
...@@ -1656,8 +1656,6 @@ bool sbbs_t::exec_xtrn(uint xtrnnum) ...@@ -1656,8 +1656,6 @@ bool sbbs_t::exec_xtrn(uint xtrnnum)
if(cfg.xtrn[xtrnnum]->misc & XTRN_PAUSE) if(cfg.xtrn[xtrnnum]->misc & XTRN_PAUSE)
pause(); pause();
else
lncntr = 0;
if(cfg.postxtrn_mod[0] != '\0') { if(cfg.postxtrn_mod[0] != '\0') {
SAFEPRINTF2(str, "%s %s", cfg.postxtrn_mod,cfg.xtrn[xtrnnum]->code); SAFEPRINTF2(str, "%s %s", cfg.postxtrn_mod,cfg.xtrn[xtrnnum]->code);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment