minor fix

-    def move(self, horizontally, vertically, trail=False):
+    def move(self, horizontally, vertically, trail=0):
This commit is contained in:
adrienmalin 2018-08-11 12:46:23 +02:00
parent 0b24348370
commit 97131e02cf

View File

@ -96,7 +96,7 @@ class Tetromino:
self.matrix.update() self.matrix.update()
return True return True
def move(self, horizontally, vertically, trail=False): def move(self, horizontally, vertically, trail=0):
""" """
Try to translate self horizontally or vertically Try to translate self horizontally or vertically
The Tetrimino in play falls from just above the Skyline one cell at a time, The Tetrimino in play falls from just above the Skyline one cell at a time,