From 7353bf0e69322c40092163ad66b17aa2d953d254 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Thu, 4 Jan 2024 11:43:13 +0200 Subject: [PATCH] Message location for monster throwing or shooting at hero --- src/mthrowu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mthrowu.c b/src/mthrowu.c index 40f94313f..e67fdb14d 100644 --- a/src/mthrowu.c +++ b/src/mthrowu.c @@ -282,6 +282,7 @@ monshoot(struct monst* mtmp, struct obj* otmp, struct obj* mwep) } gm.m_shot.s = ammo_and_launcher(otmp, mwep) ? TRUE : FALSE; Strcpy(trgbuf, mtarg ? some_mon_nam(mtarg) : ""); + set_msg_xy(mtmp->mx, mtmp->my); pline("%s %s %s%s%s!", Monnam(mtmp), gm.m_shot.s ? "shoots" : "throws", onm, mtarg ? " at " : "", trgbuf);