We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37725e1 commit 109f8afCopy full SHA for 109f8af
1 file changed
load/dmbase.js
@@ -212,6 +212,24 @@ msg_base = {
212
e.number + " back. :(\n");
213
}
214
break;
215
+ case '0':
216
+ case '1':
217
+ case '2':
218
+ case '3':
219
+ case '4':
220
+ case '5':
221
+ case '6':
222
+ case '7':
223
+ case '8':
224
+ case '9': //we're going to read message by number here
225
+ //there will, of course, have to be some error checking for
226
+ //trying to hit out of bounds messages if dispMsg() doesn't
227
+ //already have it
228
+ console.putmsg(green + high_intensity + "Go to message #> ");
229
+ console.ungetstr(uchoice); //put it back on the input stack
230
+ msg_base.dispMsg(new MsgBase(bbs.cursub_code),
231
+ console.getnum(maxMsgs), false);
232
+ break;
233
default:
234
console.putmsg(normal + yellow + "Invalid choice\n");
235
0 commit comments