mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Add 0x4000_0002 Duty Completed Flytext Shown even to DutyState.cs
This commit is contained in:
parent
44dc127101
commit
fe27d8c46b
1 changed files with 8 additions and 1 deletions
|
|
@ -121,8 +121,15 @@ public unsafe class DutyState : IDisposable, IServiceType
|
|||
this.DutyRecommenced.InvokeSafely(this, this.clientState.TerritoryType);
|
||||
break;
|
||||
|
||||
// Duty Completed Flytext Shown
|
||||
case 0x4000_0002 when !this.CompletedThisTerritory:
|
||||
this.IsDutyStarted = false;
|
||||
this.CompletedThisTerritory = true;
|
||||
this.DutyCompleted.InvokeSafely(this, this.clientState.TerritoryType);
|
||||
break;
|
||||
|
||||
// Duty Completed
|
||||
case 0x4000_0003:
|
||||
case 0x4000_0003 when !this.CompletedThisTerritory:
|
||||
this.IsDutyStarted = false;
|
||||
this.CompletedThisTerritory = true;
|
||||
this.DutyCompleted.InvokeSafely(this, this.clientState.TerritoryType);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue