mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-24 00:39:49 +00:00
fix wrong increment
This commit is contained in:
parent
b25f2e88ce
commit
682fd23aea
@ -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…
x
Reference in New Issue
Block a user