From 5717accde8b5714a06899067f6c7e37b98d7b52f Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 24 Apr 2019 09:48:25 -0400 Subject: [PATCH] The sgn correction again. --- sst.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sst.py b/sst.py index 1fdcbd6..07317a0 100755 --- a/sst.py +++ b/sst.py @@ -176,7 +176,7 @@ class Coord: s = Coord() if self.i == 0: s.i = 0 - elif s.i < 0: + elif self.i < 0: s.i = -1 else: s.i = 1 @@ -950,6 +950,7 @@ def movetholian(): game.tholian.move(None) prout("***Internal error: Tholian in a bad spot.") return + print("Tholian moving from %s to %s" % (game.tholian.location, tid)) # do nothing if we are blocked if game.quad[tid.i][tid.j] not in ('.', '#'): return -- 2.31.1