X-Git-Url: http://git.pond.sub.org/?p=empserver;a=blobdiff_plain;f=src%2Flib%2Fcommands%2Fpboa.c;h=55879a2c3ad0f0620671cc4e480f2b69d598dccf;hp=975c921a837c0adc00d56fb38d84aa99f4c4e548;hb=9b7adfbe;hpb=5f263a7753dc728809ff85c993af975f6c76e61e diff --git a/src/lib/commands/pboa.c b/src/lib/commands/pboa.c index 975c921a8..55879a2c3 100644 --- a/src/lib/commands/pboa.c +++ b/src/lib/commands/pboa.c @@ -39,18 +39,18 @@ int pboa(void) { - struct sctstr sect; + struct sctstr sect; struct nstr_item np; - struct plnstr plane; + struct plnstr plane; if (!snxtitem(&np, EF_PLANE, player->argp[1])) return RET_SYN; np.flags = 0; while (nxtitem(&np, (s_char *)&plane)) { getsect(plane.pln_x, plane.pln_y, §); - if (sect.sct_own != player->cnum) continue; + if (sect.sct_own != player->cnum) + continue; takeover_plane(&plane, player->cnum); } return RET_OK; } -