home · contact · privacy
Use tuples for positions; fix inventory saving bug.
[plomrogue2-experiments] / new / plomrogue / things.py
index 9bc84907bb757fe0251b47ca7808f1d64cebe4a2..a631b174f9292dde5ab047b98836bd2820939137 100644 (file)
@@ -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: