Skip to content

Commit da0e3b6

Browse files
committed
Merge branch 'hotfix' into devel
2 parents b6efc98 + 10fb7ed commit da0e3b6

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

load/dmbase.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,15 +787,18 @@ msg_base = {
787787
console.putmsg("mBase.last_msg = " + mBase.last_msg + "\n");
788788
}
789789

790-
if (forward) {inc = 1;} else {inc = -1;}
790+
if (forward) {
791+
inc = 1;
792+
} else {
793+
inc = -1;
794+
}
791795

792796
// if starting in reverse from the room prompt, unskip one message
793797
if (!forward) {
794798
tmpPtr += 1; // so we start with the most recently read
795799
// message. In all other cases we want to skip one.
796800
}
797801

798-
799802
if (userSettings.debug.message_scan) {
800803
console.putmsg("Inc: " + inc + "\tbased on forward\n");
801804
}

0 commit comments

Comments
 (0)