deps: update lumina, manually include Lumina.Generated as resource

This commit is contained in:
goat 2020-11-23 00:26:05 +01:00
parent c8e7ef6052
commit 87bbf34601
4 changed files with 14 additions and 9 deletions

View file

@ -60,8 +60,9 @@ namespace Dalamud.Game.Network {
return;
}
var cfcName = contentFinderCondition.Name.ToString();
if (string.IsNullOrEmpty(contentFinderCondition.Name)) {
contentFinderCondition.Name = "Duty Roulette";
cfcName = "Duty Roulette";
contentFinderCondition.Image = 112324;
}
@ -80,7 +81,7 @@ namespace Dalamud.Game.Network {
Task.Run(async () => {
if(this.dalamud.Configuration.DutyFinderChatMessage)
this.dalamud.Framework.Gui.Chat.Print("Duty pop: " + contentFinderCondition.Name);
this.dalamud.Framework.Gui.Chat.Print("Duty pop: " + cfcName);
await this.ProcessCfPop?.Invoke(contentFinderCondition);
});