1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 18:00:34 +00:00

Hunting Dogs no longer retreat outside of non-quotient hyperbolic geometry

This commit is contained in:
Zeno Rogue 2018-05-20 15:15:29 +02:00
parent 8432e65d19
commit 8872c79cae

View File

@ -5336,7 +5336,7 @@ void specialMoves() {
if(m == moHunterGuard && items[itHunting] >= 10) if(m == moHunterGuard && items[itHunting] >= 10)
c->monst = moHunterChanging; c->monst = moHunterChanging;
if(m == moHunterDog && (havewhat & HF_FAILED_AMBUSH)) if(m == moHunterDog && (havewhat & HF_FAILED_AMBUSH) && hyperbolic && !quotient)
c->monst = moHunterChanging; c->monst = moHunterChanging;
if(m == moSleepBull && !peace::on) { if(m == moSleepBull && !peace::on) {