Add 0x4000_0002 Duty Completed Flytext Shown even to DutyState.cs

This commit is contained in:
MidoriKami 2023-02-18 11:59:42 -08:00
parent 44dc127101
commit fe27d8c46b

View file

@ -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);