Changeset 669
- Timestamp:
- 01/31/08 03:14:45 (10 months ago)
- Files:
-
- trunk/src/dungeon.c (modified) (3 diffs)
- trunk/src/melee2.c (modified) (1 diff)
- trunk/src/option.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/dungeon.c
r653 r669 198 198 199 199 /* Stop everything */ 200 if (disturb_minor)disturb(0, 0);200 disturb(0, 0); 201 201 202 202 /* Average pseudo-ID means full ID */ … … 409 409 410 410 /* Disturb the player */ 411 if (disturb_minor)disturb(0, 0);411 disturb(0, 0); 412 412 413 413 /* Notify the player */ … … 948 948 else if ((o_ptr->timeout < 100) && (!(o_ptr->timeout % 10))) 949 949 { 950 if (disturb_minor)disturb(0, 0);950 disturb(0, 0); 951 951 msg_print("Your light is growing faint."); 952 952 } trunk/src/melee2.c
r656 r669 3700 3700 3701 3701 /* Disturb (sometimes) */ 3702 if (disturb_minor)disturb(0, 0);3702 disturb(0, 0); 3703 3703 3704 3704 /* The door was bashed open */ trunk/src/option.c
r586 r669 68 68 OPT_disturb_detect, 69 69 OPT_disturb_state, 70 OPT_disturb_minor,71 70 OPT_quick_messages, 72 71 OPT_auto_more, … … 74 73 OPT_flush_failure, 75 74 OPT_flush_disturb, 75 OPT_NONE, 76 76 OPT_NONE, 77 77 OPT_NONE, … … 154 154 { "disturb_detect", "Disturb whenever leaving trap detected area", TRUE }, /* 22 */ 155 155 { "disturb_state", "Disturb whenever player state changes", TRUE }, /* 23 */ 156 { "disturb_minor", "Disturb whenever boring things happen", TRUE },/* 24 */156 { NULL, NULL, FALSE }, /* 24 */ 157 157 { NULL, NULL, FALSE }, /* 25 */ 158 158 { NULL, NULL, FALSE }, /* 26 */
