mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
no more ambushes when summoning orbs in the Hunting Grounds
This commit is contained in:
parent
25d972d144
commit
529befd359
2
game.cpp
2
game.cpp
@ -6618,7 +6618,7 @@ bool collectItem(cell *c2, bool telekinesis) {
|
||||
if(c2->item == itDodeca && peace::on) peace::simon::extend();
|
||||
}
|
||||
|
||||
if(c2->land == laHunting && c2->item) {
|
||||
if(c2->land == laHunting && c2->item && !inv::activating) {
|
||||
int dogs = ambush(c2, c2->item);
|
||||
if(dogs)
|
||||
addMessage(XLAT("You are ambushed!"));
|
||||
|
Loading…
Reference in New Issue
Block a user