X-Git-Url: https://plomlompom.com/repos/?p=plomrogue2-experiments;a=blobdiff_plain;f=new%2Fplomrogue%2Fthings.py;h=a631b174f9292dde5ab047b98836bd2820939137;hp=9bc84907bb757fe0251b47ca7808f1d64cebe4a2;hb=65e83c99b95a619afc79e8984e6f5027bc7aac1b;hpb=cffcecff2e4bb085305b9ef0f7cf4b5b20445f44 diff --git a/new/plomrogue/things.py b/new/plomrogue/things.py index 9bc8490..a631b17 100644 --- a/new/plomrogue/things.py +++ b/new/plomrogue/things.py @@ -5,7 +5,7 @@ from plomrogue.errors import GameError class ThingBase: type_ = '?' - def __init__(self, world, id_=None, position=[0,0]): + def __init__(self, world, id_=None, position=(0,0)): self.world = world self.position = position if id_ is None: