Skip to content

Commit

Permalink
Fix condition update stats (#3826)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturKnopik authored Dec 4, 2021
1 parent 0cde952 commit e658d2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/condition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ void ConditionAttributes::updateStats(Player* player)

if (needUpdateStats) {
player->sendStats();
player->sendSkills();
}
}

Expand Down Expand Up @@ -578,6 +579,7 @@ void ConditionAttributes::endCondition(Creature* creature)

if (needUpdateStats) {
player->sendStats();
player->sendSkills();
}
}

Expand Down

0 comments on commit e658d2a

Please sign in to comment.