From 4f6dd3d59b3981f96ee9f4de0dd02c135435956b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Sejkora?= Date: Sat, 23 Nov 2024 18:53:32 +0100 Subject: [PATCH] Fix W8 log data update logic --- ArcdpsLogManager/ArcdpsLogManager.csproj | 2 +- ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/ArcdpsLogManager/ArcdpsLogManager.csproj b/ArcdpsLogManager/ArcdpsLogManager.csproj index ab70eb2..dd48598 100644 --- a/ArcdpsLogManager/ArcdpsLogManager.csproj +++ b/ArcdpsLogManager/ArcdpsLogManager.csproj @@ -17,7 +17,7 @@ Each new log data update causes a revision increase. See LogDataUpdater for the updates. --> - 1.13.0.0 + 1.13.0.1 diff --git a/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs b/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs index 72a5aab..f44f9b5 100644 --- a/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs +++ b/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs @@ -216,11 +216,9 @@ x.Profession is Profession.Thief or Profession.Engineer or Profession.Ranger new LogUpdate(log => log.ParsingVersion < new Version(1, 11, 1, 10) && log.Encounter == Encounter.SoullessHorror, "Fix detection for Soulless Horror in case the encounter resets before all players are dead."), - new LogUpdate(log => log.ParsingVersion < new Version(1, 14, 0, 0) - && log.Encounter == Encounter.Greer - && log.Encounter == Encounter.Decima - && log.Encounter == Encounter.Ura - && log.MapId == MapIds.RaidWing8, + new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 0, 1) + && log.Encounter is Encounter.Greer or Encounter.Decima or Encounter.Ura + && log.MapId == MapIds.RaidWing8, "Added support for Greer, Decima and Ura in Mount Balrior."), // When adding a new update, you need to increase the revision (last value) of the version in the .csproj file // unless the version changes more significantly, in that case it can be reset to 0.