Changeset 613
- Timestamp:
- 12/21/07 20:14:44 (10 months ago)
- Files:
-
- trunk/src/obj-info.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/obj-info.c
r608 r613 523 523 } while (*desc++); 524 524 525 text_out(". ");525 text_out(".\n"); 526 526 527 527 if (base || dice || sides) 528 528 { 529 529 /* Some artifacts can be activated */ 530 text_out(" When it is used, it takes ");530 text_out("It takes "); 531 531 532 532 /* Output the number of turns */ … … 543 543 } 544 544 545 text_out(" turns to recharge .");545 text_out(" turns to recharge after use.\n"); 546 546 } 547 547 … … 708 708 text_out("Provides nourishment for about "); 709 709 text_out_c(TERM_L_GREEN, "%d", o_ptr->pval / 2); 710 text_out(" turns under normal conditions. ");710 text_out(" turns under normal conditions.\n"); 711 711 has_info = TRUE; 712 712 } … … 741 741 text_out("Provides nourishment for about "); 742 742 text_out_c(TERM_L_GREEN, "%d", o_ptr->pval / 2); 743 text_out(" turns under normal conditions. ");743 text_out(" turns under normal conditions.\n"); 744 744 has_info = TRUE; 745 745 }
