From 7a7f2476b6114b97b0d47da735d803ec215b8086 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Tue, 20 Jul 2021 00:45:16 -0700 Subject: [PATCH] Hunting Dogs now notify stragglers of failed ambushes --- monstermove.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/monstermove.cpp b/monstermove.cpp index ffdca97d..1c0f03f2 100644 --- a/monstermove.cpp +++ b/monstermove.cpp @@ -1796,8 +1796,13 @@ EX void specialMoves() { if(m == moHunterGuard && items[itHunting] >= 10) c->monst = moHunterChanging; - if(m == moHunterDog && (havewhat & HF_FAILED_AMBUSH) && hyperbolic && !quotient) - c->monst = moHunterChanging; + if ((havewhat & HF_FAILED_AMBUSH) && hyperbolic && !quotient) { + if(m == moHunterDog) + c->monst = moHunterChanging; + forCellEx(c2, c) + if(c2->monst == moHunterDog) + c2->monst = moHunterChanging; + } if(m == moSleepBull && !peace::on) { bool wakeup = false;