From a5d674eeaa338b2585222a9f405c7cb5d2f7fbe0 Mon Sep 17 00:00:00 2001 From: Stas Sergeev Date: Thu, 4 Nov 2010 22:57:06 +0000 Subject: [PATCH] fixed visual bugs --- src/sst.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/sst.py b/src/sst.py index 448b6ea..501b407 100644 --- a/src/sst.py +++ b/src/sst.py @@ -3154,7 +3154,7 @@ def skip(i): if game.options & OPTION_CURSES: (y, x) = curwnd.getyx() (my, mx) = curwnd.getmaxyx() - if curwnd == message_window and y >= my - 3: + if curwnd == message_window and y >= my - 2: pause_game() clrscr() else: @@ -4879,7 +4879,8 @@ def lrscan(silent): proutn(" ***") elif not silent: proutn(" %3d" % (game.state.chart[x][y].klingons*100 + game.state.chart[x][y].starbase * 10 + game.state.chart[x][y].stars)) - prout(" ") + if not silent: + prout(" ") def damagereport(): "Damage report." -- 2.31.1