Return TRUE if object sheds any light at all. */
| 760 | |
| 761 | /* Return TRUE if object sheds any light at all. */ |
| 762 | boolean |
| 763 | obj_sheds_light(struct obj *obj) |
| 764 | { |
| 765 | /* so far, only burning objects shed light */ |
| 766 | return obj_is_burning(obj); |
| 767 | } |
| 768 | |
| 769 | /* Return TRUE if sheds light AND will be snuffed by end_burn(). */ |
| 770 | boolean |
no test coverage detected