Skip to content

Commit

Permalink
Treat objects as fully identified when generating kicking death messa…
Browse files Browse the repository at this point in the history
…ges - "killed by kicking Stormbringer" is generated in all cases as opposed to "killed by kicking a runed broadsword named Stormbringer" when dealing with the artifact.
  • Loading branch information
sgrunt committed Apr 6, 2012
1 parent df67d29 commit 9eab22f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dokick.c
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ char *buf;
{
const char *what;

if (kickobj) what = distant_name(kickobj,doname);
if (kickobj) what = killer_xname(kickobj, "", TRUE);
else if (IS_DOOR(maploc->typ)) what = "a door";
else if (IS_TREE(maploc->typ)) what = "a tree";
else if (IS_STWALL(maploc->typ)) what = "a wall";
Expand Down

0 comments on commit 9eab22f

Please sign in to comment.