changeset 155:f4601492020b

Fix bug with starting minion count
author Neil Muller <drnlmuller@gmail.com>
date Fri, 11 May 2012 21:09:01 +0200
parents ae6dff8ff88c
children abaf6853fe37
files gamelib/gamestate.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gamestate.py	Fri May 11 20:32:50 2012 +0200
+++ b/gamelib/gamestate.py	Fri May 11 21:09:01 2012 +0200
@@ -12,9 +12,9 @@
 
     def __init__(self, init_data=None):
         self.money = 1000
-        self.minions = 1
         self.milestone = "basement"
         # Will be updated on the next turn
+        self.minions = 0
         self.points = 0
         self.reputation = 0
         self.turn = 0