comparison components/equipable.py @ 75:9e03f7816061

(Re)added setting of inventory and equipment in the object files.
author KarstenBock@gmx.net
date Thu, 22 Sep 2011 16:18:07 +0200
parents 1b1ab906e76e
children 4cf150131139
comparison
equal deleted inserted replaced
74:c9818290bbe7 75:9e03f7816061
17 """ 17 """
18 Component that stores the data for an entity that can be equipped. 18 Component that stores the data for an entity that can be equipped.
19 """ 19 """
20 20
21 def __init__(self): 21 def __init__(self):
22 Component.__init__(self, possible_slots=list, wearer=object, in_slot=str) 22 Component.__init__(self, image=str, possible_slots=list, wearer=object, in_slot=str)