changeset 103:1085bbed254f

merge
author Rizmari Versfeld <rizziepit@gmail.com>
date Wed, 09 May 2012 22:14:13 +0200
parents 80fa87ac505e (current diff) 531eb3239da2 (diff)
children d6646a3fc565
files
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gamelib/gamestate.py	Wed May 09 22:13:31 2012 +0200
+++ b/gamelib/gamestate.py	Wed May 09 22:14:13 2012 +0200
@@ -5,7 +5,7 @@
 
 from gamelib import missions, lab
 from gamelib.game_base import get_subclasses
-from gamelib.constants import NEW_SCIENCE, NEW_SCHEMATIC
+from gamelib.constants import NEW_SCIENCE, NEW_SCHEMATIC, M_VALS
 
 
 class Game(object):
@@ -33,7 +33,7 @@
 
     def start_turn(self):
         # Make more flexible?
-        self.points += 3
+        self.points += 1 + M_VALS[self.milestone] * 2
         self.turn += 1
         self.cur_missions = []
         self.cur_allocation = []