X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fio.py;h=a79e548cf4f359c1931ff20e11364797ab0b0d0e;hb=81f8bee1a21642c56b1fead9ba79afdad0c8b451;hp=ab3bbffc071e7e7b739c82f921ee4df71f22676b;hpb=289eb1b62e2ae3cd1de5c815a670af7cf0b9660e;p=plomrogue diff --git a/server/io.py b/server/io.py index ab3bbff..a79e548 100644 --- a/server/io.py +++ b/server/io.py @@ -179,13 +179,13 @@ def save_world(): return string string = "" + for plugin in world_db["PLUGIN"]: + string = string + "PLUGIN " + plugin + "\n" 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" - for plugin in world_db["PLUGIN"]: - string = string + "PLUGIN " + plugin + "\n" string = string + mapsetter("MAP")() string = string + helper("ThingActions", "TA_ID") string = string + helper("ThingTypes", "TT_ID", {"TT_CORPSE_ID": False}) @@ -260,7 +260,7 @@ def obey(command, prefix, replay=False, do_record=False): io_db["save_wait"] = time.time() io_db["worldstate_updateable"] = world_db["WORLD_ACTIVE"] elif 0 != len(tokens): - print("Invalid command/argument, or bad number of tokens.") + print("Invalid command/argument, or bad number of tokens: " + command) def obey_lines_in_file(path, name, do_record=False):