mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 22:53:53 +00:00
fix wrong increment
This commit is contained in:
parent
b25f2e88ce
commit
682fd23aea
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ const ESM::Potion *MWMechanics::Alchemy::getRecord() const
|
|||
|
||||
bool mismatch = false;
|
||||
|
||||
for (int i=0; i<static_cast<int> (iter->mEffects.mList.size()); ++iter)
|
||||
for (int i=0; i<static_cast<int> (iter->mEffects.mList.size()); ++i)
|
||||
{
|
||||
const ESM::ENAMstruct& first = iter->mEffects.mList[i];
|
||||
const ESM::ENAMstruct& second = mEffects[i];
|
||||
|
|
Loading…
Reference in a new issue