1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 12:42:11 +00:00

Fix older savegame compatibility regarding new crime feature.

This commit is contained in:
scrawl 2014-04-18 12:34:12 +02:00
parent 65161c3e24
commit d3d0b7362f

View File

@ -26,8 +26,10 @@ void ESM::Player::load (ESMReader &esm)
mBirthsign = esm.getHNString ("SIGN"); mBirthsign = esm.getHNString ("SIGN");
esm.getHNT (mCurrentCrimeId, "CURD"); mCurrentCrimeId = 0;
esm.getHNT (mPayedCrimeId, "PAYD"); esm.getHNOT (mCurrentCrimeId, "CURD");
mPayedCrimeId = 0;
esm.getHNOT (mPayedCrimeId, "PAYD");
} }
void ESM::Player::save (ESMWriter &esm) const void ESM::Player::save (ESMWriter &esm) const