fix bugs, add screenshot

master
Artem 2017-07-02 10:33:38 +01:00
parent 9d02cb51b5
commit ace2e86fad
2 changed files with 2 additions and 2 deletions

BIN
screenshots/game.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -111,8 +111,8 @@ def draw_status_window(window):
window.addstr(row, 2, "".rjust(STATUS_WINDOW_WIDTH - 3, " "))
window.border()
import random
window.addstr(1, 2, f"Score: {game_board.score} {random.randint(1,10)}")
window.addstr(1, 2, f"Score: {game_board.score}")
window.addstr(2, 2, f"Lines: {game_board.lines}")
window.addstr(3, 2, f"Level: {game_board.level}")
window.addstr(4, 2, f"Best Score:{game_board.best_score}")