Skip to content

Commit f2114de

Browse files
committed
Clarified message for exdesc creation suggestion
1 parent aee32ac commit f2114de

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

src/player_exdescs.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
To answer:
2525
We want folks to pay syspoints for exdesc usage, when does that happen? Pay sysp to increase your exdesc quota
2626
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-
3027
3128
table: pfiles_exdescs
3229
idnum
@@ -381,7 +378,6 @@ void exdesc_conceal_reveal(struct char_data *vict, int wearloc, bool check_for_r
381378
strlcpy(exdesc_buf, check_for_reveal ? "This reveals" : "This conceals", sizeof(exdesc_buf));
382379
}
383380

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.
385381
snprintf(ENDOF(exdesc_buf), sizeof(exdesc_buf) - strlen(exdesc_buf), " %s^n", decapitalize_a_an(remove_final_punctuation(exdesc->get_name())));
386382
}
387383
strlcat(exdesc_buf, ".", sizeof(exdesc_buf));
@@ -686,7 +682,7 @@ void pc_exdesc_edit_parse_olc_menu(struct descriptor_data *d, const char *arg) {
686682
d->edit_mode = PC_EXDESC_EDIT_OLC_SET_KEYWORD;
687683
break;
688684
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);
690686
d->edit_mode = PC_EXDESC_EDIT_OLC_SET_NAME;
691687
break;
692688
case '3': // Edit desc.

0 commit comments

Comments
 (0)