1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

Orb of Matter no longer 'works' in the Free Fall

This commit is contained in:
Zeno Rogue
2019-06-13 17:10:47 +02:00
parent 96bd13aec9
commit cecd362915
2 changed files with 3 additions and 2 deletions

View File

@@ -829,6 +829,7 @@ void summonAt(cell *dest) {
}
bool tempWallPossibleAt(cell *dest) {
if(dest->land == laWestWall) return false;
if(dest->monst || (dest->item && !itemHidden(dest))) return false;
return dest->wall == waChasm || isWatery(dest) || dest->wall == waNone ||
dest->wall == waTempBridge;