X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fio.py;h=a79e548cf4f359c1931ff20e11364797ab0b0d0e;hb=81f8bee1a21642c56b1fead9ba79afdad0c8b451;hp=877e525e3b23c14eccff83df2e9c572fd99bb7b1;hpb=117674cb8473e064058f6f99d99f7ed4aa2c8779;p=plomrogue diff --git a/server/io.py b/server/io.py index 877e525..a79e548 100644 --- a/server/io.py +++ b/server/io.py @@ -184,7 +184,7 @@ def save_world(): for key in sorted(world_db.keys()): if (not isinstance(world_db[key], dict) and not isinstance(world_db[key], list)) and key != "MAP" and \ - key != "WORLD_ACTIVE": + key != "WORLD_ACTIVE" and key[0].isupper(): string = string + key + " " + str(world_db[key]) + "\n" string = string + mapsetter("MAP")() string = string + helper("ThingActions", "TA_ID")