From 7e6c89659e9e22d1d11b4958e6072bd3bac9624a Mon Sep 17 00:00:00 2001 From: ViViV_ Date: Tue, 12 May 2026 00:28:20 +0200 Subject: [PATCH] fix: ServerHash regex off-by-one in listen channel Groups[2] doesn't exist; the hash is in Groups[1]. The empty ServerHash caused server-multipliers events to fall into the creature import branch and be silently dropped. Cluster rates now auto-apply on the next push. --- ARKBreedingStats/AsbServer/Connection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARKBreedingStats/AsbServer/Connection.cs b/ARKBreedingStats/AsbServer/Connection.cs index cf555551..fb421c14 100644 --- a/ARKBreedingStats/AsbServer/Connection.cs +++ b/ARKBreedingStats/AsbServer/Connection.cs @@ -268,7 +268,7 @@ private static async Task ReadServerSentEvents(StreamRe var matchServerHash = RgServerHash.Match(received); if (matchServerHash.Success) { - report = new ProgressReportAsbServer { ServerHash = matchServerHash.Groups[2].Value }; + report = new ProgressReportAsbServer { ServerHash = matchServerHash.Groups[1].Value }; while (true) {