(cens, cens_hdr): Column fall used to be shown only with FALLOUT.

Show it always.
This commit is contained in:
Markus Armbruster 2006-01-05 16:03:51 +00:00
parent cb7c9008c8
commit 7b6fbbc3d2
2 changed files with 19 additions and 26 deletions

View file

@ -103,9 +103,7 @@ cens(void)
else
pr(" ");
}
if (opt_FALLOUT) {
pr("%5d", sect.sct_fallout);
}
pr("%5d", opt_FALLOUT ? sect.sct_fallout : 0);
if (sect.sct_coastal)
pr("%4d", sect.sct_coastal);
pr("\n");
@ -134,9 +132,6 @@ cens_hdr(void)
pr("mob uf uf old civ mil uw food work avail ");
if (!player->god)
pr("ter ");
if (opt_FALLOUT)
pr("fall ");
pr("coa");
pr("\n");
pr("fall coa\n");
}