# HG changeset patch # User Jeremy Thurgood # Date 1336298409 -7200 # Node ID 5e21bf2b68531fe2035d628400ca65410948e51d # Parent 6ab4f1ab9eab9388a93d1420d83f07630da7958a Fix very basics of research and products. diff -r 6ab4f1ab9eab -r 5e21bf2b6853 gamelib/research.py --- a/gamelib/research.py Sun May 06 11:59:20 2012 +0200 +++ b/gamelib/research.py Sun May 06 12:00:09 2012 +0200 @@ -28,6 +28,6 @@ class Space(ResearchArea): NAME = "SPAAAAAACE!" PREREQUISITES = ( - (RoboticsResearch, 1), - (RocketryResearch, 2), + (Robotics, 1), + (Rocketry, 2), )