@@ -8,6 +8,7 @@
* Add turn length vs turn number plot to `analysis/SampleAnalysis-SingleGame.ipynb`.
* Reorder game initilization so that most of the info can be entered before the player order is determined.
+* Announce gameID and location at the start.
### 0.4.1 (18 November 2018)
@@ -125,6 +125,8 @@ class cgame:
self.conn.commit()
self.gameID = gID[0]
+
+ _sys.stdout.write("Start game #{0:d} in ".format(self.gameID) + location + "\n")
def getPlayers(self):