X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fsst.py;h=79c8e62d7f1f95381dd788e4412ad3810e4b6d0f;hb=00866f423e80e6c2316619d955e3bbda3d343e09;hp=635816e42e1cc910418ef1b450d86eaf104ac906;hpb=645f1a528a6490187abf34a044ffa50d8f137157;p=super-star-trek.git diff --git a/src/sst.py b/src/sst.py index 635816e..79c8e62 100644 --- a/src/sst.py +++ b/src/sst.py @@ -6064,12 +6064,14 @@ commands = { def listCommands(): "Generate a list of legal commands." - proutn(_("LEGAL COMMANDS ARE:")) - for (k, key) in enumerate(commands): + prout(_("LEGAL COMMANDS ARE:")) + emitted = 0 + for key in commands: if not commands[key] or (commands[key] & game.options): - if k % 5 == 0: + proutn("%-12s " % key) + emitted += 1 + if emitted % 5 == 4: skip(1) - proutn("%-12s " % key) skip(1) def helpme():