remove an entire item from a monster's inventory; destroy that item */
| 1151 | |
| 1152 | /* remove an entire item from a monster's inventory; destroy that item */ |
| 1153 | void |
| 1154 | m_useupall(struct monst *mon, struct obj *obj) |
| 1155 | { |
| 1156 | extract_from_minvent(mon, obj, TRUE, FALSE); |
| 1157 | obfree(obj, (struct obj *) 0); |
| 1158 | } |
| 1159 | |
| 1160 | /* remove one instance of an item from a monster's inventory */ |
| 1161 | void |
no test coverage detected