From: Stas Sergeev Date: Mon, 9 Oct 2006 17:41:34 +0000 (+0000) Subject: announce doesnt ask for enter X-Git-Tag: 2.0~114 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=9b13173965aab4e6f81803e4a4757c9792162cab announce doesnt ask for enter --- diff --git a/src/io.c b/src/io.c index 4571db2..6d9a7e5 100644 --- a/src/io.c +++ b/src/io.c @@ -92,10 +92,7 @@ void waitfor(void) void announce(void) { skip(1); - if (game.skill > SKILL_FAIR) - prouts(_("[ANOUNCEMENT ARRIVING...]")); - else - prouts(_("[IMPORTANT ANNOUNCEMENT ARRIVING -- PRESS ENTER TO CONTINUE]")); + prouts(_("[ANOUNCEMENT ARRIVING...]")); skip(1); } diff --git a/src/sst.py b/src/sst.py index 6636aa6..1fde98c 100644 --- a/src/sst.py +++ b/src/sst.py @@ -3424,10 +3424,7 @@ def waitfor(): def announce(): skip(1) - if game.skill > SKILL_FAIR: - prouts(_("[ANOUNCEMENT ARRIVING...]")) - else: - prouts(_("[IMPORTANT ANNOUNCEMENT ARRIVING -- PRESS ENTER TO CONTINUE]")) + prouts(_("[ANOUNCEMENT ARRIVING...]")) skip(1) def pause_game():