diff --git a/ArcdpsLogManager/ArcdpsLogManager.csproj b/ArcdpsLogManager/ArcdpsLogManager.csproj
index dd48598..5d9f46b 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.1
+ 1.13.1.0
diff --git a/ArcdpsLogManager/CHANGELOG.md b/ArcdpsLogManager/CHANGELOG.md
index da58108..9135987 100644
--- a/ArcdpsLogManager/CHANGELOG.md
+++ b/ArcdpsLogManager/CHANGELOG.md
@@ -2,6 +2,11 @@
This is the full changelog of the arcdps Log Manager.
+## Log Manager v1.13.1
+
+#### Fixes
+- Fixed wing 8 logs not being reprocessed automatically
+
## Log Manager v1.13
#### New features
diff --git a/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs b/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs
index f44f9b5..4d17021 100644
--- a/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs
+++ b/ArcdpsLogManager/Logs/Updates/LogDataUpdater.cs
@@ -216,8 +216,8 @@ 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, 13, 0, 1)
- && log.Encounter is Encounter.Greer or Encounter.Decima or Encounter.Ura
+ new LogUpdate(log => log.ParsingVersion < new Version(1, 13, 1, 0)
+ && log.Encounter == Encounter.Other
&& 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