Add NAME handling to Race record

openmw-38
Stanislav Bas 10 years ago
parent b667338a8f
commit 8c3654af11

@ -22,6 +22,8 @@ void Race::load(ESMReader &esm)
{ {
mPowers.mList.clear(); mPowers.mList.clear();
mId = esm.getHNString("NAME");
bool hasData = false; bool hasData = false;
while (esm.hasMoreSubs()) while (esm.hasMoreSubs())
{ {
@ -51,6 +53,7 @@ void Race::load(ESMReader &esm)
} }
void Race::save(ESMWriter &esm) const void Race::save(ESMWriter &esm) const
{ {
esm.writeHNCString("NAME", mId);
esm.writeHNOCString("FNAM", mName); esm.writeHNOCString("FNAM", mName);
esm.writeHNT("RADT", mData, 140); esm.writeHNT("RADT", mData, 140);
mPowers.save(esm); mPowers.save(esm);

Loading…
Cancel
Save