# HG changeset patch # User Rizmari Versfeld # Date 1336594453 -7200 # Node ID 1085bbed254f8afce9daa56152e927bf27527c61 # Parent 80fa87ac505e95b5ebeb832487b7ba275437fb99# Parent 531eb3239da29d037cf71cc43fadb0bfb1749449 merge diff -r 80fa87ac505e -r 1085bbed254f gamelib/gamestate.py --- 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 = []