flag writing type fix

develop
Simon Jackson 2010-06-19 20:09:16 +01:00
parent 30db6ad632
commit 95b52d099f
1 changed files with 1 additions and 1 deletions

@ -397,7 +397,7 @@ bool Creatures::WriteFlags(const uint32_t index,
uint32_t temp = d->p_cre->at (index);
Process * p = d->owner;
p->writeDWord (temp + d->creatures.flags1_offset, flags1);
p->writeDWord (temp + d->creatures.flags2_offset, flags1);
p->writeDWord (temp + d->creatures.flags2_offset, flags2);
return true;
}