forked from teamnwah/openmw-tes3coop
Constantly update skill progress from LocalPlayer
This commit is contained in:
parent
56a2c70911
commit
2ab619b0e3
1 changed files with 6 additions and 0 deletions
|
@ -108,6 +108,12 @@ void LocalPlayer::updateClassStats(bool forceUpdate)
|
||||||
ptrNpcStats.getSkill(i).writeState(NpcStats()->mSkills[i]);
|
ptrNpcStats.getSkill(i).writeState(NpcStats()->mSkills[i]);
|
||||||
isUpdatingSkills = true;
|
isUpdatingSkills = true;
|
||||||
}
|
}
|
||||||
|
// If we only have skill progress, update the state for relevant skills
|
||||||
|
// but don't send a packet just because of this (to avoid spam)
|
||||||
|
else if (ptrNpcStats.getSkill(i).getProgress() != NpcStats()->mSkills[i].mProgress)
|
||||||
|
{
|
||||||
|
ptrNpcStats.getSkill(i).writeState(NpcStats()->mSkills[i]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i = 0; i < 8; ++i)
|
for (int i = 0; i < 8; ++i)
|
||||||
|
|
Loading…
Reference in a new issue