Mercurial > parpg-core
changeset 97:915190c0cbc8
Added equip to the usable components of the World class.
author | KarstenBock@gmx.net |
---|---|
date | Wed, 21 Sep 2011 16:48:01 +0200 |
parents | 137045aa4d73 |
children | c4c940fcbc83 |
files | src/parpg/world.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/parpg/world.py Wed Sep 21 16:46:36 2011 +0200 +++ b/src/parpg/world.py Wed Sep 21 16:48:01 2011 +0200 @@ -22,6 +22,7 @@ self.components.usable = components.Usable() self.components.change_map = components.ChangeMap() self.components.equipable = components.Equipable() + self.components.equip = components.Equip() def pump(self, dt): for component in self.components: