Exemplo n.º 1
0
 public void CheckLocationForBirthdays(ILocation location)
 {
     foreach (var npc in location.GetCharactersWithBirthdays())
     {
         var message = _translationHelper.Get("news-feed.birthday-notice", new { npcName = npc.GetName() });
         DisplayMessage(new HudMessage(message, HudMessageType.NewQuest));
     }
 }