forked from teamnwah/openmw-tes3coop
[Client] Require a certain Skill progress amount before sending packet
This commit is contained in:
parent
1b1e5e86d1
commit
df0f9b0f5e
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ void LocalPlayer::updateSkills(bool forceUpdate)
|
|||
// Update a skill if its base value has changed at all or its progress has changed enough
|
||||
if (ptrNpcStats.getSkill(i).getBase() != npcStats.mSkills[i].mBase ||
|
||||
ptrNpcStats.getSkill(i).getModifier() != npcStats.mSkills[i].mMod ||
|
||||
ptrNpcStats.getSkill(i).getProgress() != npcStats.mSkills[i].mProgress ||
|
||||
abs(ptrNpcStats.getSkill(i).getProgress() - npcStats.mSkills[i].mProgress) > 0.75 ||
|
||||
forceUpdate)
|
||||
{
|
||||
skillIndexChanges.push_back(i);
|
||||
|
|
Loading…
Reference in a new issue