diff gamelib/equipment.py @ 569:3ec614e6fd4a

Replace monolithic sell equipment tool with a tool for each type of equipment.
author Simon Cross <hodgestar@gmail.com>
date Sat, 28 Nov 2009 19:59:46 +0000
parents 05e0c3fd20ec
children 441077fab928
line wrap: on
line diff
--- a/gamelib/equipment.py	Sat Nov 28 19:37:08 2009 +0000
+++ b/gamelib/equipment.py	Sat Nov 28 19:59:46 2009 +0000
@@ -230,7 +230,7 @@
     DRAW_LAYER = 14
 
 def is_equipment(obj):
-    """Return true if obj is a build class."""
+    """Return true if obj is an equipment class."""
     return getattr(obj, "IS_EQUIPMENT", False) and hasattr(obj, "NAME")
 
 def is_weapon(obj):