We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc0e792 commit 734be47Copy full SHA for 734be47
1 file changed
load/dmbase.js
@@ -591,10 +591,16 @@ msg_base = {
591
console.putmsg("mBase.last_msg = " + mBase.last_msg + "\n");
592
}
593
594
- if (forward) {inc = 1;} else {inc = -1;}
+ if (forward) {
595
+ inc = 1;
596
+ } else {
597
+ inc = -1;
598
+ }
599
600
// if starting in reverse from the room prompt, unskip one message
- if (!forward) tmpPtr += 1; // so we start with the most recently read
601
+ if (!forward) {
602
+ tmpPtr += 1; // so we start with the most recently read
603
604
// message. In all other cases we want to skip one.
605
606
if (userSettings.debug.message_scan) {
0 commit comments