1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

Fix discovered issues, remove not implemented ideas

This commit is contained in:
Ivan Savenko
2025-05-09 17:26:23 +03:00
parent 700eeb6bd4
commit 6859ab7c36
6 changed files with 33 additions and 23 deletions

View File

@@ -42,20 +42,25 @@ bool operator==(const Rewardable::Limiter & l, const Rewardable::Limiter & r)
{
return l.dayOfWeek == r.dayOfWeek
&& l.daysPassed == r.daysPassed
&& l.heroLevel == r.heroLevel
&& l.heroExperience == r.heroExperience
&& l.heroLevel == r.heroLevel
&& l.manaPoints == r.manaPoints
&& l.manaPercentage == r.manaPercentage
&& l.secondary == r.secondary
&& l.canLearnSkills == r.canLearnSkills
&& l.creatures == r.creatures
&& l.spells == r.spells
&& l.artifacts == r.artifacts
&& l.players == r.players
&& l.heroes == r.heroes
&& l.heroClasses == r.heroClasses
&& l.commanderAlive == r.commanderAlive
&& l.hasExtraCreatures == r.hasExtraCreatures
&& l.resources == r.resources
&& l.primary == r.primary
&& l.secondary == r.secondary
&& l.artifacts == r.artifacts
&& l.availableSlots == r.availableSlots
&& l.scrolls == r.scrolls
&& l.spells == r.spells
&& l.canLearnSpells == r.canLearnSpells
&& l.creatures == r.creatures
&& l.heroes == r.heroes
&& l.heroClasses == r.heroClasses
&& l.players == r.players
&& l.noneOf == r.noneOf
&& l.allOf == r.allOf
&& l.anyOf == r.anyOf;