| 1698 | } |
| 1699 | |
| 1700 | boolean |
| 1701 | avoid_ceiling(d_level *lev) |
| 1702 | { |
| 1703 | /* The quest is challenging since parts of the level |
| 1704 | may have ceilings and other parts may not; Avoid |
| 1705 | the ambiguity there by testing with avoid_ceiling() |
| 1706 | and using alternative messaging that avoids the term |
| 1707 | ceiling altogether there */ |
| 1708 | if (In_quest(lev) || !has_ceiling(lev)) |
| 1709 | return TRUE; |
| 1710 | return FALSE; |
| 1711 | } |
| 1712 | |
| 1713 | const char * |
| 1714 | ceiling(coordxy x, coordxy y) |
no test coverage detected