1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

fixed ambush size

This commit is contained in:
Zeno Rogue
2020-03-07 04:37:24 +01:00
parent 4828623960
commit 35dbeea702
2 changed files with 3 additions and 5 deletions

View File

@@ -80,7 +80,7 @@ EX bool collectItem(cell *c2, bool telekinesis IS(false)) {
}
if(c2->land == laHunting && c2->item && !inv::activating) {
ambush::ambush(c2, c2->item);
ambush::ambush(c2, ambush::size(c2, c2->item));
}
if(isRevivalOrb(c2->item) && multi::revive_queue.size()) {