Bugfix: Antimagie macht falsches Zerstören von Curses

This commit is contained in:
Enno Rehling 2004-06-06 19:37:08 +00:00
parent 94cc965817
commit 476788755b
1 changed files with 2 additions and 2 deletions

View File

@ -411,10 +411,10 @@ destroy_curse(attrib **alist, int cast_level, double force, curse * c)
force = remain; force = remain;
} }
if (c1->vigour <= 0) { if (c1->vigour <= 0) {
a_remove(ap, a); a_remove(alist, a);
} }
} }
if (*ap) ap = &(*ap)->next; if (*ap==a) ap = &a->next;
} }
return succ; return succ;
} }