From 7be773ea033988cc2ca58443ba1a2ba39d79b242 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 25 Aug 2022 10:51:56 +0200 Subject: [PATCH] fixed the Slaying+side attack combo --- pcmove.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcmove.cpp b/pcmove.cpp index 2776b3db..04739fb7 100644 --- a/pcmove.cpp +++ b/pcmove.cpp @@ -1552,7 +1552,7 @@ EX void sideAttackAt(cell *mf, int dir, cell *mt, eMonster who, eItem orb, cell if(who != moPlayer) markOrb(itOrbEmpathy); int kk = 0; if(orb == itOrbPlague) kk = tkills(); - if(attackMonster(mt, AF_NORMAL | AF_SIDE | AF_MSG, who) || isAnyIvy(m)) { + if(attackMonster(mt, AF_NORMAL | f | AF_MSG, who) || isAnyIvy(m)) { if(orb == itOrbPlague && kk < tkills()) plague_kills++; if(mt->monst != m) spread_plague(mf, mt, dir, who);