X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=plomrogue-server.py;h=5fe5c26c89009f25428e49f9f0474b6c6ed9013e;hb=36519c3ce33ac973889e92971abded12b51f04db;hp=c6bdd44d2832817a93e1ef549c429eb00e3205d3;hpb=e09a0c1881ced1ca2873c5f39791f6198004b4cd;p=plomrogue diff --git a/plomrogue-server.py b/plomrogue-server.py index c6bdd44..5fe5c26 100755 --- a/plomrogue-server.py +++ b/plomrogue-server.py @@ -582,16 +582,16 @@ def actor_move(t): if world_db["Things"][id]["T_POSY"] == libpr.result_y() if world_db["Things"][id]["T_POSX"] == libpr.result_x()] if len(hitted): - hitted = hitted[0] - decrement_lifepoints(world_db["Things"][hitted]) + hit_id = hitted[0] hitter_name = world_db["ThingTypes"][t["T_TYPE"]]["TT_NAME"] hitter = "You" if t == world_db["Things"][0] else hitter_name - hitted_type = world_db["Things"][hitted]["T_TYPE"] + hitted_type = world_db["Things"][hit_id]["T_TYPE"] hitted_name = world_db["ThingTypes"][hitted_type]["TT_NAME"] - hitted = "you" if hitted == world_db["Things"][0] else hitted_name + hitted = "you" if hit_id == 0 else hitted_name verb = " wound " if hitter == "You" else " wounds " strong_write(io_db["file_out"], "LOG " + hitter + verb + hitted + \ ".\n") + decrement_lifepoints(world_db["Things"][hit_id]) return dir = [dir for dir in directions_db if directions_db[dir] == t["T_ARGUMENT"]][0]