Skip to content

Commit

Permalink
Forgot to add base_speed to Hazard::operator=()
Browse files Browse the repository at this point in the history
  • Loading branch information
dorkster committed Aug 5, 2018
1 parent c0bfd54 commit a03f110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Hazard.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Hazard& Hazard::operator=(const Hazard& other) {
crit_chance = other.crit_chance;
accuracy = other.accuracy;
source_type = other.source_type;
base_speed = other.base_speed;
lifespan = other.lifespan;
animationKind = other.animationKind;
delay_frames = other.delay_frames;
Expand Down
2 changes: 1 addition & 1 deletion src/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ FLARE. If not, see https://www.gnu.org/licenses/

#include <SDL.h>

Version VersionInfo::ENGINE(1, 6, 35);
Version VersionInfo::ENGINE(1, 6, 36);
Version VersionInfo::MIN(0, 0, 0);
Version VersionInfo::MAX(USHRT_MAX, USHRT_MAX, USHRT_MAX);

Expand Down

0 comments on commit a03f110

Please sign in to comment.