mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-23 23:47:00 +00:00
since the Aether users now see adjacent items in water, they can also pick them up
This commit is contained in:
parent
9807b1b3ba
commit
d4f449d994
@ -22,7 +22,7 @@ EX bool pickable_from_water(eItem it) {
|
||||
|
||||
EX bool cannotPickupItem(cell *c, bool telekinesis) {
|
||||
if(pickable_from_water(c->item) && isWatery(c)) return false;
|
||||
return itemHidden(c) && !telekinesis && !(isWatery(c) && markOrb(itOrbFish));
|
||||
return itemHidden(c) && !telekinesis && !(isWatery(c) && (markOrb(itOrbFish) || markOrb(itOrbAether)));
|
||||
}
|
||||
|
||||
EX bool canPickupItemWithMagnetism(cell *c, cell *from) {
|
||||
|
Loading…
Reference in New Issue
Block a user