(ldump, ndump, pdump, sdump): Remove leading spaces in deity dumps;
they waste bandwidth and don't match dump().
This commit is contained in:
parent
8a0854b6b8
commit
921a55d508
4 changed files with 4 additions and 4 deletions
|
@ -304,7 +304,7 @@ ldump(void)
|
|||
|
||||
nunits++;
|
||||
if (player->god)
|
||||
pr("%3d ", land.lnd_own);
|
||||
pr("%d ", land.lnd_own);
|
||||
pr("%d", ni.cur);
|
||||
n = 0;
|
||||
while (field[n]) {
|
||||
|
|
|
@ -72,7 +72,7 @@ ndump(void)
|
|||
for (i = 0; i < N_MAXNUKE; i++) {
|
||||
if (nuk.nuk_types[i] > 0) {
|
||||
if (player->god)
|
||||
pr("%3d ", nuk.nuk_own);
|
||||
pr("%d ", nuk.nuk_own);
|
||||
pr("%d ", nuk.nuk_uid);
|
||||
prxy("%d %d", nuk.nuk_x, nuk.nuk_y, player->cnum);
|
||||
pr(" %d", nuk.nuk_types[i]);
|
||||
|
|
|
@ -206,7 +206,7 @@ pdump(void)
|
|||
continue;
|
||||
nplanes++;
|
||||
if (player->god)
|
||||
pr("%3d ", plane.pln_own);
|
||||
pr("%d ", plane.pln_own);
|
||||
pr("%d", np.cur);
|
||||
n = 0;
|
||||
while (field[n]) {
|
||||
|
|
|
@ -276,7 +276,7 @@ sdump(void)
|
|||
count_units(&ship);
|
||||
nships++;
|
||||
if (player->god)
|
||||
pr("%3d ", ship.shp_own);
|
||||
pr("%d ", ship.shp_own);
|
||||
pr("%d", ni.cur);
|
||||
n = 0;
|
||||
while (field[n]) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue