* unblock_point() * * Make the location transparent to light. */
| 896 | * Make the location transparent to light. |
| 897 | */ |
| 898 | void |
| 899 | unblock_point(int x, int y) |
| 900 | { |
| 901 | dig_point(y, x); |
| 902 | |
| 903 | /* recalc light sources here? */ |
| 904 | |
| 905 | if (gv.viz_array[y][x]) |
| 906 | gv.vision_full_recalc = 1; |
| 907 | } |
| 908 | |
| 909 | /* recalc if point should be blocked or unblocked */ |
| 910 | void |
no test coverage detected