Skip to content
Snippets Groups Projects
Commit 9059a37a authored by rswindell's avatar rswindell
Browse files

Fix typo that causes error:

line 147: ReferenceError: KMSG is not defined
Thanks wkitty42!
parent 89d821e1
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,7 @@ while(bbs.online && !(console.aborted)) {
var msg = [];
while(msg.length < 5) {
write("\1n: \1h");
var line = console.getstr(70, msg.length < 4 ? (K_WRAP|K_MSG) : KMSG);
var line = console.getstr(70, msg.length < 4 ? (K_WRAP|K_MSG) : K_MSG);
if(!line)
break;
msg.push(line);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment