Skip to content

Commit

Permalink
fix: zero monster speed on spawn (#3554)
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
olanti-p authored Nov 4, 2023
1 parent d82fd66 commit 1d47b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/creature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Creature::Creature( const Creature &source )
armor_bash_bonus = source.armor_bash_bonus;
armor_cut_bonus = source.armor_cut_bonus;
armor_bullet_bonus = source.armor_bullet_bonus;
speed_base = source.speed_bonus;
speed_base = source.speed_base;

speed_bonus = source.speed_bonus;
speed_mult = source.speed_mult;
Expand Down

0 comments on commit 1d47b53

Please sign in to comment.