We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b6efc98 + 10fb7ed commit da0e3b6Copy full SHA for da0e3b6
1 file changed
load/dmbase.js
@@ -787,15 +787,18 @@ msg_base = {
787
console.putmsg("mBase.last_msg = " + mBase.last_msg + "\n");
788
}
789
790
- if (forward) {inc = 1;} else {inc = -1;}
+ if (forward) {
791
+ inc = 1;
792
+ } else {
793
+ inc = -1;
794
+ }
795
796
// if starting in reverse from the room prompt, unskip one message
797
if (!forward) {
798
tmpPtr += 1; // so we start with the most recently read
799
// message. In all other cases we want to skip one.
800
801
-
802
if (userSettings.debug.message_scan) {
803
console.putmsg("Inc: " + inc + "\tbased on forward\n");
804
0 commit comments