X-Git-Url: http://git.pond.sub.org/?p=empserver;a=blobdiff_plain;f=src%2Flib%2Fcommands%2Ftrea.c;h=1b1e1a97caa031bbbdd10f5be225c388eb75d50a;hp=3d45b876788129ebf246699309349d3474d7cc58;hb=9b7adfbe;hpb=5f263a7753dc728809ff85c993af975f6c76e61e diff --git a/src/lib/commands/trea.c b/src/lib/commands/trea.c index 3d45b8767..1b1e1a97c 100644 --- a/src/lib/commands/trea.c +++ b/src/lib/commands/trea.c @@ -43,21 +43,21 @@ int trea(void) { - struct trtstr treaty; - struct nstr_item nstr; - int ntreaty; + struct trtstr treaty; + struct nstr_item nstr; + int ntreaty; - if (!snxtitem(&nstr, EF_TREATY, player->argp[1])) - return RET_SYN; - pr("\t... %s Treaty Report ...\n", cname(player->cnum)); - ntreaty = 0; - while (nxtitem(&nstr, (s_char *)&treaty)) { - if (distrea(nstr.cur, &treaty) > 0) - ntreaty++; - } - if (!ntreaty) - pr("No treaties found.\n"); - else - pr("%d treat%s\n", ntreaty, iesplur(ntreaty)); - return RET_OK; + if (!snxtitem(&nstr, EF_TREATY, player->argp[1])) + return RET_SYN; + pr("\t... %s Treaty Report ...\n", cname(player->cnum)); + ntreaty = 0; + while (nxtitem(&nstr, (s_char *)&treaty)) { + if (distrea(nstr.cur, &treaty) > 0) + ntreaty++; + } + if (!ntreaty) + pr("No treaties found.\n"); + else + pr("%d treat%s\n", ntreaty, iesplur(ntreaty)); + return RET_OK; }