changeset 4:5e21bf2b6853

Fix very basics of research and products.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 06 May 2012 12:00:09 +0200
parents 6ab4f1ab9eab
children dd9046d0680c
files gamelib/research.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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),
         )