home · contact · privacy
Turn Consumable into Bottle that may be full or empty.
[plomrogue2] / plomrogue / things.py
index 15216efe5fdbaa8309a6f5b48bd5e4dc971dce2e..67a3807fc939b88df98716d61392065d2511e496 100644 (file)
@@ -141,14 +141,15 @@ class Thing_Door(Thing):
 
 
 
-class Thing_Consumable(Thing):
+class Thing_Bottle(Thing):
     symbol_hint = 'B'
     portable = True
+    full = True
 
 
 
-class Thing_ConsumableSpawner(ThingSpawner):
-    child_type = 'Consumable'
+class Thing_BottleSpawner(ThingSpawner):
+    child_type = 'Bottle'