From d4d2e33f5751e570d1d0f57620303bacca3b7539 Mon Sep 17 00:00:00 2001 From: Gabe Cunningham Date: Thu, 1 Mar 2012 17:15:25 -0500 Subject: [PATCH] Fix #1526: Mimics now silently take monster attacks. --- src/spells1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells1.c b/src/spells1.c index 0e6687f4f9..1110ccfbda 100644 --- a/src/spells1.c +++ b/src/spells1.c @@ -2752,7 +2752,7 @@ static bool project_m(int who, int r, int y, int x, int dam, int typ, } /* Damaged monster */ - else + else if (!is_mimicking(m_ptr)) { /* Give detailed messages if visible or destroyed */ if ((m_note != MON_MSG_NONE) && seen)