changeset 68:8915ff6183b0

Added equip to the usable components of the World class.
author KarstenBock@gmx.net
date Wed, 21 Sep 2011 16:48:01 +0200
parents 1a450a764817
children c1959525efda
files world.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/world.py	Wed Sep 21 16:46:36 2011 +0200
+++ b/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: