Skip to content
Snippets Groups Projects
Commit 9ab258d0 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add misisng parens from previous commit

parent d38c6ae9
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,7 @@ function show_subs(grp)
{
if(msg_area.grp_list.length < 1)
return;
if(bbs.menu("subs" + msg_area.grp_list[grp].number + 1, P_NOERROR))
if(bbs.menu("subs" + (msg_area.grp_list[grp].number + 1), P_NOERROR))
return;
console.newline();
console.print(format(bbs.text(bbs.text.SubLstHdr), msg_area.grp_list[grp].description));
......@@ -182,7 +182,7 @@ function show_dirs(lib)
{
if(file_area.lib_list.length < 1)
return;
if(bbs.menu("dirs" + file_area.lib_list[lib].number + 1, P_NOERROR))
if(bbs.menu("dirs" + (file_area.lib_list[lib].number + 1), P_NOERROR))
return;
console.newline();
console.print(format(bbs.text(bbs.text.DirLstHdr), file_area.lib_list[lib].description));
......
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