mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-05 12:45:33 +00:00
Changed crime IDs for legacy savegames. Not an issue, but it was inconsistent.
This commit is contained in:
parent
262e959699
commit
2cb9f38a45
1 changed files with 2 additions and 2 deletions
|
@ -26,9 +26,9 @@ void ESM::Player::load (ESMReader &esm)
|
||||||
|
|
||||||
mBirthsign = esm.getHNString ("SIGN");
|
mBirthsign = esm.getHNString ("SIGN");
|
||||||
|
|
||||||
mCurrentCrimeId = 0;
|
mCurrentCrimeId = -1;
|
||||||
esm.getHNOT (mCurrentCrimeId, "CURD");
|
esm.getHNOT (mCurrentCrimeId, "CURD");
|
||||||
mPayedCrimeId = 0;
|
mPayedCrimeId = -1;
|
||||||
esm.getHNOT (mPayedCrimeId, "PAYD");
|
esm.getHNOT (mPayedCrimeId, "PAYD");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue