|
24 | 24 | To answer: |
25 | 25 | We want folks to pay syspoints for exdesc usage, when does that happen? Pay sysp to increase your exdesc quota |
26 | 26 |
|
27 | | - // TODO: Add visibility filters for looking at someone with descs, listing them, etc: if covered, don't show |
28 | | - // TODO STRETCH: Alter wear/remove to add reveal/hide for exdescs. |
29 | | -
|
30 | 27 |
|
31 | 28 | table: pfiles_exdescs |
32 | 29 | idnum |
@@ -381,7 +378,6 @@ void exdesc_conceal_reveal(struct char_data *vict, int wearloc, bool check_for_r |
381 | 378 | strlcpy(exdesc_buf, check_for_reveal ? "This reveals" : "This conceals", sizeof(exdesc_buf)); |
382 | 379 | } |
383 | 380 |
|
384 | | - // todo the multi slot isn't working right, something with more than one still shows/hides when just one is toggled. Also, update instructions for exdesc customization to show that it should be a noun/name instead of a description or sentence. "A tattoo frozen across his back" is fine, "a tattoo is frozen" is wrong. |
385 | 381 | snprintf(ENDOF(exdesc_buf), sizeof(exdesc_buf) - strlen(exdesc_buf), " %s^n", decapitalize_a_an(remove_final_punctuation(exdesc->get_name()))); |
386 | 382 | } |
387 | 383 | strlcat(exdesc_buf, ".", sizeof(exdesc_buf)); |
@@ -686,7 +682,7 @@ void pc_exdesc_edit_parse_olc_menu(struct descriptor_data *d, const char *arg) { |
686 | 682 | d->edit_mode = PC_EXDESC_EDIT_OLC_SET_KEYWORD; |
687 | 683 | break; |
688 | 684 | case '2': // Edit name. |
689 | | - send_to_char("Good exdesc names are full sentences with capitalization and punctuation, like 'An inky dragon tattoo is frozen in a roar across his back.'\r\nEnter a new name for this exdesc: ", CH); |
| 685 | + send_to_char("Good exdesc names are tense-less names with capitalization and punctuation, like 'An inky dragon tattoo frozen in a roar across his back.'\r\nEnter a new name for this exdesc: ", CH); |
690 | 686 | d->edit_mode = PC_EXDESC_EDIT_OLC_SET_NAME; |
691 | 687 | break; |
692 | 688 | case '3': // Edit desc. |
|
0 commit comments