X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/ledger2?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=1618ee65e49c07493fc2cc67f87a22045f4b998c;hb=e6a3ab3471ae5a2be10bd64d694eef462d7f7cf6;hp=0f058f2af68822cf30650f667e5931a3e1f83562;hpb=df9a8d0a788b29913dae3eec4ef8113e2d8e9a41;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 0f058f2..1618ee6 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -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