mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-20 16:37:40 +00:00
no more ambushes when summoning orbs in the Hunting Grounds
This commit is contained in:
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!"));
|
||||
|
Reference in New Issue
Block a user