Config to disable the Duty Pop message

This commit is contained in:
pohky 2020-08-08 06:42:43 +02:00
parent 73aea2d67c
commit 937898e404
3 changed files with 10 additions and 1 deletions

View file

@ -81,7 +81,8 @@ namespace Dalamud.Game.Network {
}
Task.Run(async () => {
this.dalamud.Framework.Gui.Chat.Print("Duty pop: " + contentFinderCondition.Name);
if(this.dalamud.Configuration.DutyFinderChatMessage)
this.dalamud.Framework.Gui.Chat.Print("Duty pop: " + contentFinderCondition.Name);
await this.ProcessCfPop?.Invoke(contentFinderCondition);
});