diff --git a/src/game.rs b/src/game.rs index 796470f..c9601e5 100644 --- a/src/game.rs +++ b/src/game.rs @@ -141,9 +141,11 @@ pub trait Controllable { impl Controllable for Game { fn move_left(&mut self) { self.playfield.move_offset(-1, 0); + self.update_lock_tick(); } fn move_right(&mut self) { self.playfield.move_offset(1, 0); + self.update_lock_tick(); } fn move_down(&mut self) { if self.playfield.move_offset(0, 1) {