mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-18 00:06:45 +00:00
Merge branch 'lessassertiveschooling' into 'master'
Don't assert that spells have a school See merge request OpenMW/openmw!3651
This commit is contained in:
commit
4dfd2b0f46
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ namespace MWMechanics
|
||||||
ESM::RefId school;
|
ESM::RefId school;
|
||||||
float skillTerm;
|
float skillTerm;
|
||||||
calcWeakestSchool(&spell, actorSkills, school, skillTerm);
|
calcWeakestSchool(&spell, actorSkills, school, skillTerm);
|
||||||
assert(!school.empty());
|
if (school.empty())
|
||||||
|
continue;
|
||||||
SchoolCaps& cap = schoolCaps[school];
|
SchoolCaps& cap = schoolCaps[school];
|
||||||
|
|
||||||
if (cap.mReachedLimit && spellCost <= cap.mMinCost)
|
if (cap.mReachedLimit && spellCost <= cap.mMinCost)
|
||||||
|
|
Loading…
Reference in a new issue