X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.py;fp=sst.py;h=8466a481dbf7caec731003ee5aa64a52f0baa3b3;hp=12f1bad0900bffbfc751773126266268ac1a3351;hb=67902b614804f9a73bcfab0b395f3b0a06c4255b;hpb=63467e47a60fc5f8bfe4af21ad13c82bb5f4cd63 diff --git a/sst.py b/sst.py index 12f1bad..8466a48 100755 --- a/sst.py +++ b/sst.py @@ -2072,6 +2072,7 @@ def phasers(): prout(_("Manual-fire-must-be-used")) skip(1) elif automode == "MANUAL": + print("****HERE WE ARE*** %d" % len(game.enemies)) rpow = 0.0 for k in range(len(game.enemies)): aim = game.enemies[k].location @@ -2087,7 +2088,6 @@ def phasers(): scanner.chew() key = "IHEOL" hits[k] = 0 # prevent overflow -- thanks to Alexei Voitenko - k += 1 continue if key == "IHEOL": scanner.chew() @@ -2117,7 +2117,8 @@ def phasers(): # abort out scanner.chew() return - hits[k] = scanner.real + print("k is %d" % k) + hits.append(scanner.real) rpow += scanner.real # If total requested is too much, inform and start over if rpow > avail: @@ -2125,7 +2126,6 @@ def phasers(): scanner.chew() return key = scanner.nexttok() # scan for next value - k += 1 if rpow == 0.0: # zero energy -- abort scanner.chew()