Mercurial > parpg-source
comparison components/equipable.py @ 70:1b1ab906e76e
Renamed container to wearer in the equipable component.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 17:37:30 +0200 |
parents | e856b604b650 |
children | 9e03f7816061 |
comparison
equal
deleted
inserted
replaced
69:c1959525efda | 70:1b1ab906e76e |
---|---|
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) |