Changeset 717
- Timestamp:
- 02/26/08 04:35:02 (6 months ago)
- Files:
-
- trunk/src/cmd4.c (modified) (1 diff)
- trunk/src/generate.c (modified) (1 diff)
- trunk/src/option.c (modified) (3 diffs)
- trunk/src/option.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd4.c
r653 r717 4323 4323 void do_cmd_feeling(void) 4324 4324 { 4325 /* Don't show feelings for cold-hearted characters */ 4326 if (OPT(birth_feelings)) return; 4327 4325 4328 /* Verify the feeling */ 4326 4329 if (feeling >= N_ELEMENTS(feeling_text)) trunk/src/generate.c
r716 r717 3393 3393 3394 3394 /* Town gets no feeling */ 3395 if ( !depth == 0) return 0;3395 if (depth == 0) return 0; 3396 3396 3397 3397 #if 0 trunk/src/option.c
r705 r717 85 85 OPT_birth_maximize, 86 86 OPT_birth_randarts, 87 OPT_birth_ai_sound, 88 OPT_birth_ai_smell, 89 OPT_birth_ai_packs, 90 OPT_birth_ai_learn, 91 OPT_birth_ai_cheat, 92 OPT_birth_ai_smart, 87 93 OPT_birth_ironman, 88 94 OPT_birth_no_stores, … … 91 97 OPT_birth_no_preserve, 92 98 OPT_birth_no_stairs, 93 OPT_birth_ai_sound, 94 OPT_birth_ai_smell, 95 OPT_birth_ai_packs, 96 OPT_birth_ai_learn, 97 OPT_birth_ai_cheat, 98 OPT_birth_ai_smart, 99 OPT_NONE, 99 OPT_birth_feelings 100 100 }, 101 101 … … 267 267 { "birth_no_preserve", "Lose artifacts when leaving level", FALSE }, /* 135 */ 268 268 { "birth_no_stairs", "Don't generate connected stairs", FALSE }, /* 136 */ 269 { NULL, NULL,FALSE }, /* 137 */269 { "birth_feelings", "Don't show level feelings", FALSE }, /* 137 */ 270 270 { NULL, NULL, FALSE }, /* 138 */ 271 271 { NULL, NULL, FALSE }, /* 139 */ trunk/src/option.h
r698 r717 92 92 #define OPT_birth_no_preserve (OPT_BIRTH+7) 93 93 #define OPT_birth_no_stairs (OPT_BIRTH+8) 94 #define OPT_birth_feelings (OPT_BIRTH+9) 94 95 /* leave four spaces for future */ 95 96 #define OPT_birth_ai_sound (OPT_BIRTH+13) … … 115 116 #define OPT_adult_no_preserve (OPT_ADULT+7) 116 117 #define OPT_adult_no_stairs (OPT_ADULT+8) 118 #define OPT_adult_feelings (OPT_ADULT+9) 117 119 /* leave four spaces for future */ 118 120 #define OPT_adult_ai_sound (OPT_ADULT+13)
