Changeset 290
- Timestamp:
- 07/05/07 20:08:08 (1 year ago)
- Files:
-
- trunk/src/object1.c (modified) (5 diffs)
- trunk/src/store.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/object1.c
r274 r290 480 480 } 481 481 } 482 483 /* Use proper name (Healing, or whatever) */ 482 484 else 483 /* Use proper name (Healing, or whatever) */484 485 { 485 486 cptr str = (k_name + k_ptr->name); … … 649 650 * such as: 650 651 * "no more Maces of Disruption (Defender) (+10,+10) [+5] (+3 to stealth)". 651 652 * 652 653 * Note that the object description will be clipped to fit into the given 653 654 * buffer size. … … 694 695 * 1 -- A Cloak of Death [1,+3] 695 696 * 2 -- An Amulet of Death [1,+3] (+2 to Stealth) 696 * 3 -- 5 Rings of Death [1,+3] (+2 to Stealth) {nifty} 697 * 3 -- 5 Rings of Death [1,+3] (+2 to Stealth) {nifty} (squelch) 698 * 4 -- 5 Rings of Death [1,+3] (+2 to Stealth) {nifty} 697 699 * 698 700 * Modes ("pref" is FALSE): … … 700 702 * 1 -- Cloak of Death [1,+3] 701 703 * 2 -- Amulet of Death [1,+3] (+2 to Stealth) 702 * 3 -- Rings of Death [1,+3] (+2 to Stealth) {nifty} 704 * 3 -- Rings of Death [1,+3] (+2 to Stealth) {nifty} (squelch) 705 * 4 -- Rings of Death [1,+3] (+2 to Stealth) {nifty} 703 706 */ 704 707 void object_desc(char *buf, size_t max, const object_type *o_ptr, int pref, int mode) … … 1644 1647 } 1645 1648 1646 /* Add squelch marker */ 1647 if (!hide_squelchable && squelch_item_ok(o_ptr)) 1649 1650 /* Add squelch marker unless mode == 4 (in-store) */ 1651 if (mode != 4 && !hide_squelchable && squelch_item_ok(o_ptr)) 1648 1652 object_desc_str_macro(t, " (squelch)"); 1649 1653 trunk/src/store.c
r265 r290 1626 1626 1627 1627 /* Describe the object */ 1628 object_desc(o_name, sizeof(o_name), o_ptr, TRUE, 3);1628 object_desc(o_name, sizeof(o_name), o_ptr, TRUE, 4); 1629 1629 1630 1630 /* Display the object */
