Enable the new nuk_on_plane(), replacing the old one

Callers changed, as the new one isn't a drop-in replacements.
This commit is contained in:
Markus Armbruster 2008-09-06 19:22:56 -04:00
parent 64a53c90f0
commit 4086c25a15
6 changed files with 9 additions and 41 deletions

View file

@ -94,21 +94,6 @@ nuk_prewrite(int n, void *old, void *new)
np->nuk_own = own;
}
int
nuk_on_plane(struct nukstr *np, int pluid)
{
struct nstr_item ni;
snxtitem_all(&ni, EF_NUKE);
while (nxtitem(&ni, np)) {
if (np->nuk_own == 0)
continue;
if (np->nuk_plane == pluid)
return np->nuk_uid;
}
return -1;
}
void
nuk_oninit(void *ptr)
{