// Replace "{name}"s with the NPCs first name public string FormattedDisplayText(NPC npc) { if (npc.charName == null) { return(DisplayText); } return(DisplayText.Replace("{name}", npc.charName.Item1)); }