changeset 94:5ab004fa4a2e

Added saveable_fields to Equip.
author KarstenBock@gmx.net
date Tue, 27 Sep 2011 15:54:46 +0200
parents d1b0b3da4b8b
children d67e8288e9bf
files components/equip.py
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
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."""