mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 20:29:17 +00:00
friends are no longer crushed when Empathy should protect them
This commit is contained in:
parent
26569e799a
commit
cc97572654
2
game.cpp
2
game.cpp
@ -5876,7 +5876,7 @@ void placeGolem(cell *on, cell *moveto, eMonster m) {
|
|||||||
addMessage(XLAT("There is no room for %the1!", m));
|
addMessage(XLAT("There is no room for %the1!", m));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if(passable(on, moveto, m == moTameBomberbird ? P_FLYING : 0))
|
if(passable(on, moveto, P_ISFRIEND | (m == moTameBomberbird ? P_FLYING : 0)))
|
||||||
on->monst = m;
|
on->monst = m;
|
||||||
else {
|
else {
|
||||||
on->monst = m;
|
on->monst = m;
|
||||||
|
Loading…
Reference in New Issue
Block a user