| 1244 | } |
| 1245 | |
| 1246 | bool origin_describable(const item_def &item) |
| 1247 | { |
| 1248 | return origin_known(item) |
| 1249 | && !_origin_is_special(item) |
| 1250 | && !is_stackable_item(item) |
| 1251 | && item.quantity == 1 |
| 1252 | && item.base_type != OBJ_CORPSES; |
| 1253 | } |
| 1254 | |
| 1255 | static string _article_it(const item_def &/*item*/) |
| 1256 | { |
no test coverage detected