summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2011-02-20 09:39:58 +0100
committerBardur Arantsson <bardur@scientician.net>2011-02-20 09:39:58 +0100
commit4e2409780f3401a292877c0fcbbef046ef09803e (patch)
tree04f2f2376bf0d96908d7d9c3fd200c841f4cc661
parentc4f2e466bca7b30d2798237367ab0538456cf85a (diff)
Killerbunnies: Fix dodge messages.
-rw-r--r--src/melee1.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/melee1.c b/src/melee1.c
index 5a309fc2..df7739b5 100644
--- a/src/melee1.c
+++ b/src/melee1.c
@@ -1558,7 +1558,9 @@ bool make_attack_normal(int m_idx, byte divis)
if ((chance > 0) && magik(chance))
{
- msg_format("You dodge %s attack!", m_name);
+ char m_poss[80];
+ monster_desc(m_poss, m_ptr, 0x06);
+ msg_format("You dodge %s attack!", m_poss);
continue;
}