diff --git a/src/lib/commands/edit.c b/src/lib/commands/edit.c index 995c0fa4..3670c462 100644 --- a/src/lib/commands/edit.c +++ b/src/lib/commands/edit.c @@ -226,8 +226,6 @@ print_sect(struct sctstr *sect) static void print_nat(struct natstr *np) { - int i; - pr("Country #: %2d\n", np->nat_cnum); pr("Name : %-20s\t", np->nat_cnam); pr("Representative : %s\n", np->nat_pnam); @@ -245,14 +243,6 @@ print_nat(struct natstr *np) pr("Happiness : %.2f\n", np->nat_level[NAT_HLEV]); pr("Money : $%6d\n", np->nat_money); pr("Telegrams : %6d\n", np->nat_tgms); - if (opt_HIDDEN) { - pr("Countries contacted: "); - for (i = 0; i < MAXNOC; i++) { - if (getcontact(np, i)) - pr("%d(%d) ", i, getcontact(np, i)); - } - pr("\n"); - } } static void