summaryrefslogtreecommitdiff
path: root/src/game.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.rs')
-rw-r--r--src/game.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.rs b/src/game.rs
index c31f64f..2158b8b 100644
--- a/src/game.rs
+++ b/src/game.rs
@@ -247,7 +247,8 @@ impl GameBoard {
if let Some(worm) = player.active_worm_mut() {
worm.health -= damage;
}
- player.moves_score += ATTACK_SCORE_MULTIPLIER * damage + MOVE_SCORE;
+ // You might expect damage score too here, but nope
+ player.moves_score += MOVE_SCORE;
}
}
_ => {