Changeset 454
- Timestamp:
- 08/06/07 13:22:41 (1 year ago)
- Files:
-
- trunk/src/cmd3.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd3.c
r407 r454 593 593 594 594 595 /* 596 * Return whether the item has an inscription. 597 */ 598 static bool item_has_inscription(const object_type *o_ptr) 599 { 600 return (o_ptr->note ? TRUE : FALSE); 601 } 602 595 603 596 604 /* … … 610 618 q = "Un-inscribe which item? "; 611 619 s = "You have nothing to un-inscribe."; 620 item_tester_hook = item_has_inscription; 612 621 if (!get_item(&item, q, s, (USE_EQUIP | USE_INVEN | USE_FLOOR))) return; 613 622
