Changed comment to string type

This commit is contained in:
Mark Mine 2003-10-21 22:38:30 +00:00
parent 6b4309afc3
commit db02cfd728

View File

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