/ * ExtractNewObject: Get an object_node from ptr, and increment * ptr appropriately. Return a newly allocated object containing * read info. */
| 363 | * read info. |
| 364 | */ |
| 365 | object_node *ExtractNewObject(char **ptr) |
| 366 | { |
| 367 | object_node *item = ObjectGetBlank(); |
| 368 | ExtractObject(ptr, item); |
| 369 | return item; |
| 370 | } |
| 371 | |
| 372 | object_node *ExtractNewObjectNoLighting(char **ptr) |
| 373 | { |
no test coverage detected