| 1956 | } |
| 1957 | |
| 1958 | staticfn boolean |
| 1959 | get_valid_jump_position(coordxy x, coordxy y) |
| 1960 | { |
| 1961 | return (isok(x, y) |
| 1962 | && (ACCESSIBLE(levl[x][y].typ) || Passes_walls) |
| 1963 | && is_valid_jump_pos(x, y, gj.jumping_is_magic, FALSE)); |
| 1964 | } |
| 1965 | |
| 1966 | staticfn void |
| 1967 | display_jump_positions(boolean on_off) |
no test coverage detected