]> git.pond.sub.org Git - empserver/commitdiff
(land): Show carrier number with a type suffix instead of a prefix,
authorMarkus Armbruster <armbru@pond.sub.org>
Mon, 29 May 2006 18:49:14 +0000 (18:49 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Mon, 29 May 2006 18:49:14 +0000 (18:49 +0000)
for consistency with nuke and plane commands.

src/lib/commands/land.c

index 1d4665d090e7715bd3aa323a3164b77f6781c744..a8b28f61c4eb4f8978ce4dc287438d18034c5e18 100644 (file)
@@ -67,10 +67,7 @@ land(void)
            pr("   # unit type          x,y   a  eff mil frt  mu  fd");
            if (opt_FUEL)
                pr(" fl");
-           pr(" tch retr rd");
-           pr(" xl");
-           pr(" ln");
-           pr(" l/s\n");
+           pr(" tch retr rd xl ln carry\n");
        }
        if (player->god)
            pr("%3d ", land.lnd_own);
@@ -91,9 +88,9 @@ land(void)
        pr("%3d", land.lnd_nxlight);
        pr("%3d", land.lnd_nland);
        if (land.lnd_ship >= 0)
-           pr(" S%4d", land.lnd_ship);
+           pr(" %4dS", land.lnd_ship);
        else if (land.lnd_land >= 0)
-           pr(" L%4d", land.lnd_land);
+           pr(" %4dL", land.lnd_land);
        pr("\n");
     }
     if (nunits == 0) {