summaryrefslogtreecommitdiff
path: root/src/game.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.rs')
-rw-r--r--src/game.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/game.rs b/src/game.rs
index f2c0089..00289a0 100644
--- a/src/game.rs
+++ b/src/game.rs
@@ -238,13 +238,8 @@ impl GameBoard {
self.simulate_moves(actions);
self.simulate_digs(actions);
self.simulate_bombs(actions);
- // TODO: Question order of actions on the forums: https://forum.entelect.co.za/t/possible-bug-in-order-of-moves/822
- self.simulate_snowballs(actions);
- // This check needs to happen again because the worm may have
- // been frozen on the previous command. This will probably be
- // removed after the bug is fixed.
- let actions = self.identify_actions(moves);
self.simulate_shoots(actions);
+ self.simulate_snowballs(actions);
self.clear_dead_worms();