* Returns TRUE if you didn't fall through a hole or didn't * release a trap door */
| 6657 | * release a trap door |
| 6658 | */ |
| 6659 | boolean |
| 6660 | uescaped_shaft(struct trap *trap) |
| 6661 | { |
| 6662 | return (trap && is_hole(trap->ttyp) && trap->tseen |
| 6663 | && u_at(trap->tx, trap->ty)); |
| 6664 | } |
| 6665 | |
| 6666 | /* Destroy a trap that emanates from the floor. */ |
| 6667 | boolean |
no outgoing calls
no test coverage detected