Fix SummonKey comparison function

pull/593/head
Andrei Kortunov 4 years ago
parent 53e581fe10
commit 9f1fbd56a3

@ -39,9 +39,13 @@ namespace ESM
{
if (mEffectId < other.mEffectId)
return true;
if (mEffectId > other.mEffectId)
return false;
if (mSourceId < other.mSourceId)
return true;
if (mSourceId > other.mSourceId)
return false;
return mEffectIndex < other.mEffectIndex;
}

Loading…
Cancel
Save