duplicate attribute, mage

This commit is contained in:
Enno Rehling 2004-03-06 17:41:49 +00:00
parent 338b4185be
commit 65744fee76
1 changed files with 9 additions and 3 deletions

View File

@ -318,7 +318,15 @@ create_mage(unit * u, magic_t mtyp)
attrib *a; attrib *a;
int i; int i;
a = a_find(u->attribs, &at_mage);
if (a==NULL) {
a = a_add(&u->attribs, a_new(&at_mage));
mage = calloc(1, sizeof(sc_mage)); mage = calloc(1, sizeof(sc_mage));
a->data.v = mage;
} else {
mage = a->data.v;
assert(mage->magietyp == mtyp);
}
mage->magietyp = mtyp; mage->magietyp = mtyp;
mage->spellpoints = 0; mage->spellpoints = 0;
@ -328,8 +336,6 @@ create_mage(unit * u, magic_t mtyp)
mage->combatspell[i] = SPL_NOSPELL; mage->combatspell[i] = SPL_NOSPELL;
} }
mage->spellptr = NULL; mage->spellptr = NULL;
a = a_add(&u->attribs, a_new(&at_mage));
a->data.v = mage;
createspelllist(u, mtyp); createspelllist(u, mtyp);
return mage; return mage;
} }