NPC name update and keyword targeting fix

This commit is contained in:
kinther 2025-10-31 09:33:04 -07:00
parent 88adbfb8d9
commit 0f169f850f
10 changed files with 167 additions and 88 deletions

View file

@ -876,7 +876,8 @@ struct pclean_criteria_data
struct char_player_data
{
char passwd[MAX_PWD_LENGTH+1]; /**< PC's password */
char *name; /**< PC / NPC name */
char *name; /**< Display name (PC/NPC personal name) */
char *keywords; /**< Parsing keywords (for NPCs and parsing lookup) */
char *short_descr; /**< NPC 'actions' */
char *long_descr; /**< PC / NPC look description */
char *description; /**< NPC Extra descriptions */
@ -889,6 +890,7 @@ struct char_player_data
ubyte height; /**< PC / NPC height */
};
/** Character abilities. Different instances of this structure are used for
* both inherent and current ability scores (like when poison affects the
* player strength). */