X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=server%2Fdecrement_lifepoints.py;h=d3043deb273e3e5b084ec533a102231397f26160;hp=b8cab9740abd995b4e8938c61644b079c06a45ca;hb=5cdce6d500080008b097435e2891674c16fde208;hpb=aa19546b06e90c2e6c25a66c4e8c84d84e0c2889 diff --git a/server/decrement_lifepoints.py b/server/decrement_lifepoints.py index b8cab97..d3043de 100644 --- a/server/decrement_lifepoints.py +++ b/server/decrement_lifepoints.py @@ -17,8 +17,6 @@ def decrement_lifepoints(t): live_tid = t["T_TYPE"] for tid in t["T_CARRIES"]: t["T_CARRIES"].remove(tid) - world_db["Things"][tid]["T_POSY"] = t["T_POSY"] - world_db["Things"][tid]["T_POSX"] = t["T_POSX"] world_db["Things"][tid]["carried"] = False t["T_TYPE"] = world_db["ThingTypes"][t["T_TYPE"]]["TT_CORPSE_ID"] if world_db["Things"][0] == t: