X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=server%2Fupdate_map_memory.py;h=003e0cf54778f8f16aeb1fd65f58b2cace242961;hb=5cdce6d500080008b097435e2891674c16fde208;hp=5d6ae68e57103d85350777530d010581ca9f53ae;hpb=fcfdd7a530813c0f23389fb217920c4dc2bbbde7;p=plomrogue diff --git a/server/update_map_memory.py b/server/update_map_memory.py index 5d6ae68..003e0cf 100644 --- a/server/update_map_memory.py +++ b/server/update_map_memory.py @@ -48,11 +48,12 @@ def update_map_memory(t, age_map=True): t["T_MEMTHING"] = [mt for mt in t["T_MEMTHING"] if ord_v != t["fovmap"][(mt[1] * world_db["MAP_LENGTH"]) + mt[2]]] - for id in [id for id in world_db["Things"] - if not world_db["Things"][id]["carried"]]: - type = world_db["Things"][id]["T_TYPE"] - if not world_db["ThingTypes"][type]["TT_LIFEPOINTS"]: - y = world_db["Things"][id]["T_POSY"] - x = world_db["Things"][id]["T_POSX"] - if ord_v == t["fovmap"][(y * world_db["MAP_LENGTH"]) + x]: - t["T_MEMTHING"].append((type, y, x)) + maplength = world_db["MAP_LENGTH"] + [t["T_MEMTHING"].append((world_db["Things"][id]["T_TYPE"], + world_db["Things"][id]["T_POSY"], + world_db["Things"][id]["T_POSX"])) + for id in world_db["Things"] + if not world_db["Things"][id]["carried"] + if not world_db["ThingTypes"][world_db["Things"][id]["T_TYPE"]] + ["TT_LIFEPOINTS"] + if ord_v == t["fovmap"][world_db["Things"][id]["pos"]]]