# HG changeset patch # User KarstenBock@gmx.net # Date 1316616481 -7200 # Node ID 8915ff6183b00fcd5431f1adff8167c06b296bb8 # Parent 1a450a7648178a5a31ad0c3879d2b0a00ea9a921 Added equip to the usable components of the World class. diff -r 1a450a764817 -r 8915ff6183b0 world.py --- 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: