mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
Fix for duty pop notification not showing for roulettes
This commit is contained in:
parent
ca67bbbc32
commit
2bcf2abae9
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ namespace Dalamud.Game.Network {
|
|||
var notifyType = data[16];
|
||||
var contentFinderConditionId = BitConverter.ToUInt16(data, 36);
|
||||
|
||||
if (notifyType != 3 || contentFinderConditionId == 0)
|
||||
if (notifyType != 3)
|
||||
return;
|
||||
|
||||
var contentFinderCondition = this.dalamud.Data.GetExcelSheet<ContentFinderCondition>().GetRow(contentFinderConditionId);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue