X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fio.py;h=ad30cc2d1fe892e1fcdf65549d6d5fadb2aad60f;hp=bb5d3ac13e7661feb6bfd3b7f2594038759c6772;hb=5cdce6d500080008b097435e2891674c16fde208;hpb=aa19546b06e90c2e6c25a66c4e8c84d84e0c2889 diff --git a/server/io.py b/server/io.py index bb5d3ac..ad30cc2 100644 --- a/server/io.py +++ b/server/io.py @@ -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"