X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=sst.py;h=49408172c85c2a4626727cf771adbdd0f9e704f8;hp=064eba1a4c01430e59a5a208319f041feec6ec05;hb=2b60ee942cfa8c86db7bb57a701d0371c640b434;hpb=3c04db74235bbcbd7ba4e2bc210a3d3d6b8e2fa4 diff --git a/sst.py b/sst.py index 064eba1..4940817 100755 --- a/sst.py +++ b/sst.py @@ -13,7 +13,7 @@ on how to modify (and how not to modify!) this code. """ import os, sys, math, curses, time, readline, cPickle, random, copy, gettext, getpass -version="2.0" +version="2.1" docpath = (".", "../doc", "/usr/share/doc/sst") @@ -416,7 +416,7 @@ def randreal(*args): def welcoming(iq): "Would this quadrant welcome another Klingon?" - return iq.valid_Quadrant() and \ + return iq.valid_quadrant() and \ not game.state.galaxy[iq.i][iq.j].supernova and \ game.state.galaxy[iq.i][iq.j].klingons < MAXKLQUAD @@ -6355,3 +6355,5 @@ if __name__ == '__main__': if logfp: logfp.close() print "" + +# End.