comparison src/parpg/components/equipable.py @ 99:c045f97b7dbc

Renamed container to wearer in the equipable component.
author KarstenBock@gmx.net
date Wed, 21 Sep 2011 17:37:30 +0200
parents 0f659c7675f6
children 7829eb185d6f
comparison
equal deleted inserted replaced
98:c4c940fcbc83 99:c045f97b7dbc
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, container=object, in_slot=str) 22 Component.__init__(self, possible_slots=list, wearer=object, in_slot=str)