Browse Source

Changed comment to string type

Mark Mine 22 years ago
parent
commit
db02cfd728
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/level/EntityTypes.py

+ 1 - 1
direct/src/level/EntityTypes.py

@@ -9,7 +9,7 @@ class Entity(EntityTypeDesc):
     attribs = (
         ('type', None),
         ('name', 'unnamed'),
-        ('comment', ''),
+        ('comment', '', 'string'),
         )
 
 class LevelMgr(Entity):