home · contact · privacy
Add thing protection.
[plomrogue2] / plomrogue / things.py
index 0f058f2af68822cf30650f667e5931a3e1f83562..1618ee65e49c07493fc2cc67f87a22045f4b998c 100644 (file)
@@ -18,6 +18,7 @@ class ThingBase:
 
 class Thing(ThingBase):
     blocking = False
+    protection = '.'
 
     def __init__(self, *args, **kwargs):
         super().__init__(*args, **kwargs)
@@ -40,11 +41,6 @@ class Thing_Item(Thing):
 
 
 
-class Thing_Furniture(Thing):
-    symbol_hint = 'h'
-
-
-
 class ThingAnimate(Thing):
     blocking = True