mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 22:15:32 +00:00
Fix NPC "can't teach more" message (bug #4494)
This commit is contained in:
parent
84b80ae405
commit
cac2bc768e
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ namespace MWGui
|
|||
return;
|
||||
|
||||
MWMechanics::NpcStats& npcStats = mPtr.getClass().getNpcStats (mPtr);
|
||||
if (npcStats.getSkill (skillId).getBase () <= pcStats.getSkill (skillId).getBase ())
|
||||
if (npcStats.getSkill (skillId).getModified () <= pcStats.getSkill (skillId).getBase ())
|
||||
{
|
||||
MWBase::Environment::get().getWindowManager()->messageBox ("#{sServiceTrainingWords}");
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue