# HG changeset patch # User KarstenBock@gmx.net # Date 1317131686 -7200 # Node ID 5ab004fa4a2e0c6cbc8271511e1ea9d82422cfc3 # Parent d1b0b3da4b8bb77c19668486bce2aa5151e87501 Added saveable_fields to Equip. diff -r d1b0b3da4b8b -r 5ab004fa4a2e components/equip.py --- 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."""