home · contact · privacy
Server: Optimize thing position calculation.
[plomrogue] / server / io.py
index bb5d3ac13e7661feb6bfd3b7f2594038759c6772..ad30cc2d1fe892e1fcdf65549d6d5fadb2aad60f 100644 (file)
@@ -185,7 +185,7 @@ def save_world():
             t = world_db["Things"][tid]
             for key in sorted(t.keys()):
                 if key not in {"T_CARRIES", "carried", "fovmap", "T_MEMMAP",
-                               "T_MEMTHING", "T_MEMDEPTHMAP"}:
+                               "T_MEMTHING", "T_MEMDEPTHMAP", "pos"}:
                     argument = t[key]
                     string += key + " " + (quote_escape(argument) if \
                             str == type(argument) else str(argument)) + "\n"