X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=plomrogue%2Fthings.py;h=9bf03b2f0d881364c56a32999d6a16c8fe1b13c4;hb=017484da7f2648254dda67a30a64ddd699dc0efc;hp=09cf7f0b8bac496e17c2e980494afd369ce09dcb;hpb=871008b21686f5e4b462568ff4520ea299dd496f;p=plomrogue2 diff --git a/plomrogue/things.py b/plomrogue/things.py index 09cf7f0..9bf03b2 100644 --- a/plomrogue/things.py +++ b/plomrogue/things.py @@ -7,6 +7,7 @@ import random class ThingBase: type_ = '?' + carrying = False def __init__(self, game, id_=0, position=(YX(0, 0), YX(0, 0))): self.game = game @@ -24,7 +25,6 @@ class Thing(ThingBase): protection = '.' commandable = False carried = False - carrying = False def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)