1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

no more ambushes when summoning orbs in the Hunting Grounds

This commit is contained in:
Zeno Rogue 2018-06-18 17:48:27 +02:00
parent 25d972d144
commit 529befd359

View File

@ -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!"));