Skip to content
Snippets Groups Projects
Commit a5633082 authored by deuce's avatar deuce
Browse files

Fix "Other Ships" listing to remove blank line.

parent 0537f58c
No related branches found
No related tags found
No related merge requests found
...@@ -250,7 +250,6 @@ function DisplaySector(sector, secnum, helponly) ...@@ -250,7 +250,6 @@ function DisplaySector(sector, secnum, helponly)
console.attributes="C"; console.attributes="C";
for(i in otherships) { for(i in otherships) {
otherplayer=otherships[i]; otherplayer=otherships[i];
console.crlf();
console.write(" "+otherplayer.Alias); console.write(" "+otherplayer.Alias);
if(otherplayer.TeamNumber>0) if(otherplayer.TeamNumber>0)
console.write(" Team ["+otherplayer.TeamNumber+"]"); console.write(" Team ["+otherplayer.TeamNumber+"]");
...@@ -261,10 +260,10 @@ function DisplaySector(sector, secnum, helponly) ...@@ -261,10 +260,10 @@ function DisplaySector(sector, secnum, helponly)
console.write(" (docked)"); console.write(" (docked)");
else if(otherplayer.Online) else if(otherplayer.Online)
console.write(" (online)"); console.write(" (online)");
console.crlf();
} }
if(otherships.length==0) if(otherships.length==0)
console.write(" None"); console.writeln(" None");
console.crlf();
console.attributes="HG"; console.attributes="HG";
console.writeln("Fighters defending sector"); console.writeln("Fighters defending sector");
console.attributes="G"; console.attributes="G";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment