changeset 567:33f28f1cb0eb

Fix gravity well requires.
author Simon Cross <hodgestar@gmail.com>
date Sat, 07 Sep 2013 22:38:21 +0200
parents 1474ed99aa82
children 35168dbf76bd
files nagslang/game_object.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nagslang/game_object.py	Sat Sep 07 22:33:20 2013 +0200
+++ b/nagslang/game_object.py	Sat Sep 07 22:38:21 2013 +0200
@@ -748,7 +748,7 @@
     @classmethod
     def requires(cls):
         return [("name", "string"), ("position", "coordinates"),
-                ("outline", "polygon (convex)")]
+                ("radius", "int"), ("force", "int")]
 
 
 class SheepPen(GameObject):