* Like Can_dig_down (above), but also allows falling through on the * stronghold level. Normally, the bottom level of a dungeon resists * both digging and falling. */
| 1659 | * both digging and falling. |
| 1660 | */ |
| 1661 | boolean |
| 1662 | Can_fall_thru(d_level *lev) |
| 1663 | { |
| 1664 | return (boolean) (Can_dig_down(lev) || Is_stronghold(lev)); |
| 1665 | } |
| 1666 | |
| 1667 | /* |
| 1668 | * True if one can rise up a level (e.g. cursed gain level). |
no test coverage detected