X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.py;h=22a02919b78fe66be09d52e508f2cc9e0c1ead37;hp=e1c447ef010f6bcb943fd7cf25f80f7f5c1efd49;hb=6e6032d311be62b5afa823aebf8c035c50dedbae;hpb=3940e6e663a29090fb77fe639a8f49d1a3c999d1 diff --git a/sst.py b/sst.py index e1c447e..22a0291 100755 --- a/sst.py +++ b/sst.py @@ -3863,7 +3863,7 @@ def impulse(): scanner.chew() return # Make sure enough time is left for the trip - game.optime = course.dist/0.095 + game.optime = course.distance/0.095 if game.optime >= game.state.remtime: prout(_("First Officer Spock- \"Captain, our speed under impulse")) prout(_("power is only 0.95 sectors per stardate. Are you sure")) @@ -3875,9 +3875,9 @@ def impulse(): game.ididit = True if game.alldone: return - power = 20.0 + 100.0*course.dist + power = 20.0 + 100.0*course.distance game.energy -= power - game.optime = course.dist/0.095 + game.optime = course.distance/0.095 if game.energy <= 0: finish(FNRG) return @@ -3913,7 +3913,7 @@ def warp(wcourse, involuntary): skip(1) prout(_("Engineering to bridge--")) if not game.shldup or 0.5*wcourse.power(game.warpfac) > game.energy: - iwarp = (game.energy/(wcourse.dist+0.05)) ** 0.333333333 + iwarp = (game.energy/(wcourse.distance+0.05)) ** 0.333333333 if iwarp <= 0: prout(_("We can't do it, Captain. We don't have enough energy.")) else: