X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.py;h=94f8103e95e93979e3fc3f4e2f8a861c44427ff2;hp=966795cf654b93d490dc529fe57ab63760065feb;hb=a404eb642e74b97233fa0f84b95a0601a86b5b66;hpb=8083dcb0ec0693dd5112ba89f4b40f6bd86cb89d;ds=sidebyside diff --git a/sst.py b/sst.py index 966795c..94f8103 100755 --- a/sst.py +++ b/sst.py @@ -3161,16 +3161,11 @@ def skip(i): "Skip i lines. Pause game if this would cause a scrolling event." for dummy in range(i): if game.options & OPTION_CURSES: - (y, x) = curwnd.getyx() - (my, mx) = curwnd.getmaxyx() - if curwnd == message_window and y >= my - 2: - pause_game() - clrscr() - else: - try: - curwnd.move(y+1, 0) - except curses.error: - pass + (y, x) = curwnd.getyx() + try: + curwnd.move(y+1, 0) + except curses.error: + pass else: global linecount linecount += 1 @@ -3182,6 +3177,11 @@ def skip(i): def proutn(line): "Utter a line with no following line feed." if game.options & OPTION_CURSES: + (y, x) = curwnd.getyx() + (my, mx) = curwnd.getmaxyx() + if curwnd == message_window and y >= my - 2: + pause_game() + clrscr() curwnd.addstr(line) curwnd.refresh() else: