home · contact · privacy
Use tuples for positions; fix inventory saving bug.
[plomrogue2-experiments] / new / plomrogue / tasks.py
index 5dc2f82a1db6b206827f2b6a1c23be5daaf8cf2d..1be5b6da40b2c757fccd08541fbea6002f6809aa 100644 (file)
@@ -48,7 +48,7 @@ class Task_MOVE(Task):
                                                          self.args[0])
         for id_ in self.thing.inventory:
             t = self.thing.world.get_thing(id_)
-            t.position[:] = self.thing.position
+            t.position = self.thing.position