Changeset 879
- Timestamp:
- 05/04/08 12:52:43 (3 months ago)
- Files:
-
- trunk/src/cmd2.c (modified) (1 diff)
- trunk/src/spells1.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd2.c
r810 r879 401 401 /* Squelch chest if autosquelch calls for it */ 402 402 p_ptr->notice |= PN_SQUELCH; 403 404 /* Redraw chest, to be on the safe side (it may have been squelched) */ 405 lite_spot(y, x); 403 406 } 404 407 trunk/src/spells1.c
r849 r879 2002 2002 2003 2003 /* Notice */ 2004 if (o_ptr->marked )2004 if (o_ptr->marked && !squelch_hide_item(o_ptr)) 2005 2005 { 2006 2006 msg_print("Click!"); … … 2019 2019 { 2020 2020 /* Effect "observed" */ 2021 if (o_ptr->marked )2021 if (o_ptr->marked && !squelch_hide_item(o_ptr)) 2022 2022 { 2023 2023 obvious = TRUE; … … 2029 2029 { 2030 2030 /* Observe the resist */ 2031 if (o_ptr->marked )2031 if (o_ptr->marked && !squelch_hide_item(o_ptr)) 2032 2032 { 2033 2033 msg_format("The %s %s unaffected!", … … 2040 2040 { 2041 2041 /* Describe if needed */ 2042 if (o_ptr->marked && note_kill )2042 if (o_ptr->marked && note_kill && !squelch_hide_item(o_ptr)) 2043 2043 { 2044 2044 message_format(MSG_DESTROY, 0, "The %s%s", o_name, note_kill);
