mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-26 18:35:20 +00:00
Merge pull request #1801 from terabyte25/terabyte25-trainingskill
Update trainer skill cap based off modified skill instead of based skill
This commit is contained in:
commit
fde46f03b3
@ -59,6 +59,7 @@
|
||||
Bug #4480: Segfault in QuickKeysMenu when item no longer in inventory
|
||||
Bug #4489: Goodbye doesn't block dialogue hyperlinks
|
||||
Bug #4490: PositionCell on player gives "Error: tried to add local script twice"
|
||||
Bug #4491: Training cap based off Base Skill instead of Modified Skill
|
||||
Bug #3249: Fixed revert function not updating views properly
|
||||
Feature #2606: Editor: Implemented (optional) case sensitive global search
|
||||
Feature #3276: Editor: Search- Show number of (remaining) search results and indicate a search without any results
|
||||
|
@ -80,7 +80,7 @@ namespace MWGui
|
||||
|
||||
for (int i=0; i<ESM::Skill::Length; ++i)
|
||||
{
|
||||
int value = npcStats.getSkill (i).getBase ();
|
||||
int value = npcStats.getSkill (i).getModified ();
|
||||
|
||||
skills.push_back(std::make_pair(i, value));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user