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