mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 20:29:17 +00:00
Krakens are always supposed to be able to reach the player on the sphere
This commit is contained in:
parent
79b6af41ff
commit
abe16f6bd3
@ -440,7 +440,7 @@ void wandering() {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if(!peace::on && c->land == laKraken && ((sphere && !hrand(15)) || wchance(items[itKraken], 240)) && !pseudohept(c)) {
|
if(!peace::on && c->land == laKraken && ((sphere && !hrand(15)) || wchance(items[itKraken], 240)) && !pseudohept(c)) {
|
||||||
bool b = canReachPlayer(c, moKrakenH);
|
bool b = sphere || canReachPlayer(c, moKrakenH);
|
||||||
if(sphere && (haveKraken() || !items[itOrbFish])) {
|
if(sphere && (haveKraken() || !items[itOrbFish])) {
|
||||||
c->monst = moViking; c->wall = waBoat; c->item = itOrbFish;
|
c->monst = moViking; c->wall = waBoat; c->item = itOrbFish;
|
||||||
playSeenSound(c);
|
playSeenSound(c);
|
||||||
|
Loading…
Reference in New Issue
Block a user