X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fsst.py;h=caf6b6e855b084b4148c1bf731a4d072f1bd02bd;hb=16a5bbd86d12644c1a613e61e990f76b16a567f0;hp=56a59cd8dc8b8e8ce2365f359f8cf3f38e8071fc;hpb=9cddff235f5d58f9d0a2e4ef79619d1e83022e19;p=super-star-trek.git diff --git a/src/sst.py b/src/sst.py index 56a59cd..caf6b6e 100644 --- a/src/sst.py +++ b/src/sst.py @@ -9,7 +9,7 @@ and Paul Reynolds, with modifications by Don Smith, Tom Almy, Stas Sergeev, and Eric S. Raymond. See the doc/HACKING file in the distribution for designers notes and advice -ion how to modify (and how not to modify!) this code. +on how to modify (and how not to modify!) this code. """ import os, sys, math, curses, time, readline, cPickle, random, copy, gettext, getpass @@ -3919,7 +3919,6 @@ def setwarp(): break scanner.chew() proutn(_("Warp factor- ")) - scanner.chew() if key != "IHREAL": huh() return @@ -5748,7 +5747,7 @@ def setpassword(): break else: game.passwd = "" - for i in range(8): + for i in range(3): game.passwd += chr(ord('a')+randrange(26)) # Code from sst.c begins here