mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-22 23:17: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)) {
|
||||
|
||||
int d = c2->cpdist;
|
||||
int d = c2->pathdist;
|
||||
if(d <= 3) val -= d;
|
||||
else val -= 10 * d;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user