Skip to content

Commit

Permalink
Merge branch 'release/0.6.2-6'
Browse files Browse the repository at this point in the history
  • Loading branch information
WaveHack committed Jun 16, 2019
2 parents 1819a92 + d1680f4 commit 20c607a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### [0.6.2-5] - 2019-06-16
## [0.6.2-6] - 2019-06-16
### Fixed
- Fixed Ares call not working properly sometimes

## [0.6.2-5] - 2019-06-16
### Added
- Added unread count badge to the council page menu item in the sidebar to indicate new messages since your last council visit

Expand Down Expand Up @@ -265,7 +269,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
### Added
- This CHANGELOG file.

[Unreleased]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-5...HEAD
[Unreleased]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-6...HEAD
[0.6.2-6]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-5...0.6.2-6
[0.6.2-5]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-4...0.6.2-5
[0.6.2-4]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-3...0.6.2-4
[0.6.2-3]: https://github.com/WaveHack/OpenDominion/compare/0.6.2-2...0.6.2-3
Expand Down
2 changes: 1 addition & 1 deletion src/Calculators/Dominion/MilitaryCalculator.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public function getDefensivePowerMultiplier(Dominion $dominion, float $multiplie
$multiplier += $multiplierFromFrenzy;

// Spell: Ares' Call (+10%)
if($multiplierFromBlizzard === 0 && $multiplierFromFrenzy === 0) {
if($multiplierFromBlizzard == 0 && $multiplierFromFrenzy == 0) {
$multiplier += $this->spellCalculator->getActiveSpellMultiplierBonus($dominion, 'ares_call',
$spellAresCall);
}
Expand Down

0 comments on commit 20c607a

Please sign in to comment.