diff options
Diffstat (limited to 'board/board.py')
-rw-r--r-- | board/board.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/board.py b/board/board.py index 59135d7..118a771 100644 --- a/board/board.py +++ b/board/board.py @@ -24,7 +24,7 @@ class Board(): if width and width in range(2,51): self.__width = width if height and height in range(2,51): - self.__height = width + self.__height = height if mines: self.__mines = mines |