From 09affba734d1dcd2972a649a845dbbfde9c2407d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 13 Sep 2010 15:58:55 +0000 Subject: [PATCH] Forward-porting to Python 2.6 exposed a bug. --- src/sst.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sst.py b/src/sst.py index 9eaf77d..143ca53 100644 --- a/src/sst.py +++ b/src/sst.py @@ -649,7 +649,7 @@ def movescom(iq, avoid): game.state.kscmdr = iq game.state.galaxy[game.state.kscmdr.i][game.state.kscmdr.j].klingons += 1 if game.state.kscmdr==game.quadrant: - # SC has scooted, Remove him from current quadrant + # SC has scooted, remove him from current quadrant game.iscate=False game.isatb=0 game.ientesc = False @@ -4458,7 +4458,7 @@ def usecrystals(): skip(1) prouts(_("Scotty- \"Keep your fingers crossed, Sir!\"")) skip(1) - if with(game.cryprob): + if random.random() > game.cryprob: prouts(_(" \"Activating now! - - No good! It's***")) skip(2) prouts(_("***RED ALERT! RED A*L********************************")) -- 2.31.1