mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-08-03 20:34:04 +00:00
fixed the Princess AI to use pathdist not cpdist
This commit is contained in:
parent
48e8d15042
commit
002c1ae7e9
@ -1607,7 +1607,7 @@ EX int movevalue(eMonster m, cell *c, int dir, flagtype flags) {
|
|||||||
}
|
}
|
||||||
if(isPrincess(c->monst)) {
|
if(isPrincess(c->monst)) {
|
||||||
|
|
||||||
int d = c2->cpdist;
|
int d = c2->pathdist;
|
||||||
if(d <= 3) val -= d;
|
if(d <= 3) val -= d;
|
||||||
else val -= 10 * d;
|
else val -= 10 * d;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user