Changeset 313
- Timestamp:
- 07/08/07 20:58:34 (1 year ago)
- Files:
-
- trunk/src/monster1.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/monster1.c
r312 r313 947 947 else if (l_ptr->tkills) 948 948 { 949 byte colour = (r_ptr->level > p_ptr->max_depth) ? TERM_RED : TERM_L_GREEN; 950 949 951 if (l_ptr->flags1 & RF1_FORCE_DEPTH) 950 952 text_out(" is found "); … … 955 957 { 956 958 text_out("at depths of "); 957 text_out_c( TERM_ORANGE, "%d", r_ptr->level * 50);959 text_out_c(colour, "%d", r_ptr->level * 50); 958 960 text_out(" feet"); 959 961 } … … 961 963 { 962 964 text_out("on dungeon level "); 963 text_out_c( TERM_ORANGE, "%d", r_ptr->level);965 text_out_c(colour, "%d", r_ptr->level); 964 966 } 965 967
