Compare commits

...

2 Commits

Author SHA1 Message Date
6ed3e101d9 version 1.0.6.1 -> 1.0.6.2 2024-12-23 17:29:57 +05:00
e546722a65 Deleted not needed check 2024-12-23 15:52:05 +05:00
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
<PackageId>SoulstormReplayReader.Core</PackageId>
<Authors>Bununic</Authors>
<Company>Dowonline</Company>
<Version>1.0.6.1</Version>
<Version>1.0.6.2</Version>
</PropertyGroup>
<PropertyGroup>

View File

@ -384,7 +384,7 @@ public sealed class SsReplayReader(Stream stream) : IDisposable
return;
}
if (!Replay.GameSettings.IsQuickStart && !Replay.GameSettings.AreCheatsOn && CheckForBugs)
if (CheckForBugs)
AttachBugCheckers();
Replay.Actions = new List<IGameAction>(Replay.TotalTicks / 2);