1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-22 21:23:18 +00:00

Merge pull request #240 from jruderman/ally_rose

Rose scent can now force the player's allies to walk into rosebushes
This commit is contained in:
Zeno Rogue 2021-07-18 12:23:53 +02:00 committed by GitHub
commit 4dfedc421d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1596,8 +1596,8 @@ EX int movevalue(eMonster m, cell *c, int dir, flagtype flags) {
if(b) val = 50;
else if(tk2 > tk) val += 1000 + 200 * (tk2 - tk);
}
else if(passable_for(m, c2, c, P_DEADLY)) val = -1100;
else val = -1750;
else if(passable_for(m, c2, c, P_DEADLY)) return -1100;
else return -1750;
if(c->monst == moGolem ) {
val -= c2->pathdist;