Mercurial > parpg-source
diff components/equip.py @ 94:5ab004fa4a2e
Added saveable_fields to Equip.
author | KarstenBock@gmx.net |
---|---|
date | Tue, 27 Sep 2011 15:54:46 +0200 |
parents | 939984cff702 |
children | f94d4577ca5e |
line wrap: on
line diff
--- a/components/equip.py Tue Sep 27 15:51:11 2011 +0200 +++ b/components/equip.py Tue Sep 27 15:54:46 2011 +0200 @@ -21,6 +21,10 @@ def __init__(self): Base.__init__(self, head=object, body=object, leg=object, feet=object, l_arm=object, r_arm=object) + @property + def saveable_fields(self): + return {} + class SlotInvalidError(Exception): """Error that gets raised when the slot is invalid."""