summaryrefslogtreecommitdiff
path: root/src/state.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2020-05-17 20:05:33 +0200
committerJustin Wernick <justin@worthe-it.co.za>2020-05-17 20:05:33 +0200
commit2f23ab85adb7ffc5866cc948bad0c35a7d41a05b (patch)
tree27ace87492fbb95fd29694b9e44215a49c879b1a /src/state.rs
parentd28628822e172cf232e5a86764110870baf6fc39 (diff)
Only match the good moves
Diffstat (limited to 'src/state.rs')
-rw-r--r--src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state.rs b/src/state.rs
index be42228..acbce80 100644
--- a/src/state.rs
+++ b/src/state.rs
@@ -231,7 +231,7 @@ impl GameState {
pub fn good_moves(&self, player_index: usize) -> Vec<Command> {
let player = &self.players[player_index];
- let mut result = Vec::with_capacity(7);
+ let mut result = Vec::with_capacity(5);
result.push(Command::Accelerate);
if player.position.y > MIN_Y {
result.push(Command::TurnLeft);