]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix logic in previous Tetris change
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jun 2022 19:52:11 +0000 (21:52 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 21 Jun 2022 19:52:11 +0000 (21:52 +0200)
* lisp/play/tetris.el (tetris-new-shape): Fix logic in previous
change.

lisp/play/tetris.el

index af1004e08111f2468020b903f5b5098aeaae16d1..d9bc0dd020c6047facde96cd62a1b1ecd15799fb 100644 (file)
@@ -364,8 +364,8 @@ each one of its four blocks.")
   (setq tetris-shape tetris-next-shape)
   (setq tetris-rot 0)
   (setq tetris-next-shape (if tetris-allow-repetitions
-                              (tetris--seven-bag)
-                            (random 7)))
+                              (random 7)
+                            (tetris--seven-bag)))
   (setq tetris-pos-x (/ (- tetris-width (tetris-shape-width)) 2))
   (setq tetris-pos-y 0)
   (if (tetris-test-shape)