Changeset 457
- Timestamp:
- 08/07/07 05:25:26 (1 year ago)
- Files:
-
- trunk/src/cmd2.c (modified) (2 diffs)
- trunk/src/generate.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd2.c
r449 r457 38 38 39 39 /* Create a way back */ 40 p_ptr->create_up_stair = FALSE; 40 41 p_ptr->create_down_stair = TRUE; 41 42 … … 68 69 /* Create a way back */ 69 70 p_ptr->create_up_stair = TRUE; 71 p_ptr->create_down_stair = FALSE; 70 72 71 73 /* New level */ trunk/src/generate.c
r450 r457 1004 1004 * Check stored stair locations, then search at random. 1005 1005 */ 1006 1006 1007 while (TRUE) 1007 1008 { … … 1073 1074 else if (i < 600 && (next_to_walls(y, x) < 1)) continue; 1074 1075 1076 /* MAKE stairs if we're looking here */ 1077 1078 if (!adult_no_stairs) 1079 { 1080 if (p_ptr->create_down_stair) 1081 cave_set_feat(y, x, FEAT_MORE); 1082 if (p_ptr->create_up_stair) 1083 cave_set_feat(y, x, FEAT_LESS); 1084 } 1085 1075 1086 /* Success */ 1076 1087 break;
