From 33ad4617c934e8ce94f86b261aaa7d5ecfdf626c Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 14 Apr 2024 12:20:46 +0200 Subject: [PATCH] Add delay to TargetPersonnelOfficer --- Deliveroo/Deliveroo.csproj | 2 +- Deliveroo/DeliverooPlugin.Exchange.cs | 3 +++ Deliveroo/DeliverooPlugin.Supply.cs | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Deliveroo/Deliveroo.csproj b/Deliveroo/Deliveroo.csproj index 64b196e..4c65c25 100644 --- a/Deliveroo/Deliveroo.csproj +++ b/Deliveroo/Deliveroo.csproj @@ -1,7 +1,7 @@ net8.0-windows - 4.2 + 4.3 12 enable true diff --git a/Deliveroo/DeliverooPlugin.Exchange.cs b/Deliveroo/DeliverooPlugin.Exchange.cs index ca4d569..8ae511a 100644 --- a/Deliveroo/DeliverooPlugin.Exchange.cs +++ b/Deliveroo/DeliverooPlugin.Exchange.cs @@ -200,7 +200,10 @@ partial class DeliverooPlugin CurrentStage = Stage.RequestStop; } else + { + _continueAt = DateTime.Now.AddSeconds(1); CurrentStage = Stage.TargetPersonnelOfficer; + } } } } diff --git a/Deliveroo/DeliverooPlugin.Supply.cs b/Deliveroo/DeliverooPlugin.Supply.cs index 3d53a88..e50a2e1 100644 --- a/Deliveroo/DeliverooPlugin.Supply.cs +++ b/Deliveroo/DeliverooPlugin.Supply.cs @@ -187,7 +187,7 @@ partial class DeliverooPlugin { _chatGui.Print(new SeStringBuilder().Append("Won't turn in ") .AddItemLink(_itemCache.GetItemIdFromItemName(itemName).First()) - .Append(", as can be exclusively obtained exclusively through Quick Ventures.") + .Append(", as it can only be obtained through Quick Ventures.") .Build()); addonSupplyReward->AtkUnitBase.FireCallbackInt(1);