From 11adffd7005769730161f5c3f1632fea773753a9 Mon Sep 17 00:00:00 2001 From: bleatbot <106497096+bleatbot@users.noreply.github.com> Date: Tue, 7 Oct 2025 17:33:24 +0200 Subject: [PATCH 1/3] Update Excel Schema (#2423) Co-authored-by: github-actions[bot] --- lib/Lumina.Excel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Lumina.Excel b/lib/Lumina.Excel index fae331428..a37961c45 160000 --- a/lib/Lumina.Excel +++ b/lib/Lumina.Excel @@ -1 +1 @@ -Subproject commit fae3314282b38efc2ce1edf0255d4357d924ced1 +Subproject commit a37961c453463f0f60a96f27aa278ef139841857 From 1073227b8345202d82aa7af0950993d9bbe91766 Mon Sep 17 00:00:00 2001 From: bleatbot <106497096+bleatbot@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:06:43 +0200 Subject: [PATCH 2/3] Update ClientStructs (#2419) Co-authored-by: github-actions[bot] --- lib/FFXIVClientStructs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/FFXIVClientStructs b/lib/FFXIVClientStructs index c25482543..e279b05e9 160000 --- a/lib/FFXIVClientStructs +++ b/lib/FFXIVClientStructs @@ -1 +1 @@ -Subproject commit c25482543246de695146c55ad7d571deca650919 +Subproject commit e279b05e9a6d3a0eff85e7bcaec0fe523358afba From 1ae7de26bf03d12bf8e653f74c2f574f7dcecf03 Mon Sep 17 00:00:00 2001 From: Ottermandias <70807659+Ottermandias@users.noreply.github.com> Date: Tue, 7 Oct 2025 18:40:44 +0200 Subject: [PATCH 3/3] Fix issue in SigScanner. (#2425) --- Dalamud/Game/SigScanner.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dalamud/Game/SigScanner.cs b/Dalamud/Game/SigScanner.cs index 67f4f563e..c8a371aee 100644 --- a/Dalamud/Game/SigScanner.cs +++ b/Dalamud/Game/SigScanner.cs @@ -326,7 +326,7 @@ public class SigScanner : IDisposable, ISigScanner } /// - public nint[] ScanAllText(string signature) => this.ScanAllText(signature, default).ToArray(); + public nint[] ScanAllText(string signature) => this.ScanAllText(signature, CancellationToken.None).ToArray(); /// public IEnumerable ScanAllText(string signature, CancellationToken cancellationToken) @@ -338,7 +338,7 @@ public class SigScanner : IDisposable, ISigScanner { cancellationToken.ThrowIfCancellationRequested(); - var index = IndexOf(mBase, this.TextSectionSize, needle, mask, badShift); + var index = IndexOf(mBase, this.TextSectionSize - (int)(mBase - this.TextSectionBase), needle, mask, badShift); if (index < 0) break;