mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-27 18:40:35 +00:00
Merge pull request #253 from jruderman/regroup_at_8
Hunting Dogs now notify stragglers of failed ambushes
This commit is contained in:
commit
994b3b9122
@ -1796,8 +1796,13 @@ EX 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) && hyperbolic && !quotient)
|
if ((havewhat & HF_FAILED_AMBUSH) && hyperbolic && !quotient) {
|
||||||
|
if(m == moHunterDog)
|
||||||
c->monst = moHunterChanging;
|
c->monst = moHunterChanging;
|
||||||
|
forCellEx(c2, c)
|
||||||
|
if(c2->monst == moHunterDog)
|
||||||
|
c2->monst = moHunterChanging;
|
||||||
|
}
|
||||||
|
|
||||||
if(m == moSleepBull && !peace::on) {
|
if(m == moSleepBull && !peace::on) {
|
||||||
bool wakeup = false;
|
bool wakeup = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user