X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fsst.py;h=578e3f9a3f9975fdf67ea21a45aae4304eb559fd;hp=d1b81bcf14a9e7920ecda45574db6d665da9e3c8;hb=a6dfef86203ce8cf59806554ce0239c54a1264ec;hpb=e0d8a5aa37a1633fb317eccfeada8d000c3c935b diff --git a/src/sst.py b/src/sst.py index d1b81bc..578e3f9 100644 --- a/src/sst.py +++ b/src/sst.py @@ -693,7 +693,7 @@ def movescom(iq, avoid): game.state.planets[i].pclass = destroyed game.state.galaxy[game.state.kscmdr.x][game.state.kscmdr.y].planet = NOPLANET if not damaged(DRADIO) or game.condition == docked: - pause_game(True) + announce() prout(_("Lt. Uhura- \"Captain, Starfleet Intelligence reports")) proutn(_(" a planet in Quadrant %s has been destroyed") % game.state.kscmdr) prout(_(" by the Super-commander.\"")) @@ -798,7 +798,7 @@ def supercommander(): if damaged(DRADIO) and game.condition != docked: return; # no warning game.iseenit = True - pause_game(True) + announce() prout(_("Lt. Uhura- \"Captain, the starbase in Quadrant %s") \ % game.state.kscmdr) prout(_(" reports that it is under attack from the Klingon Super-commander.")) @@ -818,7 +818,7 @@ def supercommander(): (damaged(DRADIO) and game.condition != docked) or \ not game.state.galaxy[game.state.kscmdr.x][game.state.kscmdr.y].charted): return - pause_game(True) + announce() prout(_("Lt. Uhura- \"Captain, Starfleet Intelligence reports")) proutn(_(" the Super-commander is in Quadrant %s,") % game.state.kscmdr) return; @@ -1084,7 +1084,7 @@ def ram(ibumpd, ienm, w): game.shldup = False prout(_("***Shields are down.")) if game.state.remkl + game.state.remcom + game.state.nscrem: - pause_game(True) + announce() damagereport() else: finish(FWON)