* Returns TRUE if you escaped a pit and are standing on the precipice. */
| 6645 | * Returns TRUE if you escaped a pit and are standing on the precipice. |
| 6646 | */ |
| 6647 | boolean |
| 6648 | uteetering_at_seen_pit(struct trap *trap) |
| 6649 | { |
| 6650 | return (trap && is_pit(trap->ttyp) && trap->tseen |
| 6651 | && u_at(trap->tx, trap->ty) |
| 6652 | && !(u.utrap && u.utraptype == TT_PIT)); |
| 6653 | } |
| 6654 | |
| 6655 | /* |
| 6656 | * Returns TRUE if you didn't fall through a hole or didn't |
no outgoing calls
no test coverage detected