changeset 354:55752fc7b753

Add convex requirement to hint
author Neil Muller <drnlmuller@gmail.com>
date Fri, 06 Sep 2013 17:29:50 +0200
parents b67ea65dae2b
children 9589e1db4433
files nagslang/game_object.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nagslang/game_object.py	Fri Sep 06 16:34:43 2013 +0200
+++ b/nagslang/game_object.py	Fri Sep 06 17:29:50 2013 +0200
@@ -517,7 +517,7 @@
     @classmethod
     def requires(cls):
         return [("name", "string"), ("position", "coordinates"),
-                ("outline", "polygon")]
+                ("outline", "polygon (convex)")]
 
 
 class AcidFloor(HostileTerrain):