# HG changeset patch # User KarstenBock@gmx.net # Date 1316616481 -7200 # Node ID 915190c0cbc8b39c1459fb40ab8803368f783bf7 # Parent 137045aa4d73ed8a402aaf2fc2ce7250e621c8f2 Added equip to the usable components of the World class. diff -r 137045aa4d73 -r 915190c0cbc8 src/parpg/world.py --- 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: