From 36519c3ce33ac973889e92971abded12b51f04db Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Fri, 6 Mar 2015 13:57:36 +0100 Subject: [PATCH] Server/py: Minor fixes in actor_move(). --- plomrogue-server.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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] -- 2.30.2