Skip to content

Commit fef2da2

Browse files
Merge pull request #664 from TheTrackerCouncil/aga-tracking-fix
Fix castle tower not automatically tracking
2 parents e0cc537 + 345d967 commit fef2da2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/TrackerCouncil.Smz3.Tracking/AutoTracking/AutoTrackerModules/ZeldaMiscData.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private void CheckZeldaMisc(SnesData data, SnesData? prevData)
7171
if (data.ReadUInt8(0x145) >= 3)
7272
{
7373
var castleTower = Tracker.World.CastleTower;
74-
if (castleTower.Boss.State.Defeated)
74+
if (!castleTower.Boss.State.Defeated)
7575
{
7676
Tracker.BossTracker.MarkBossAsDefeated(castleTower, null, autoTracked: true);
7777
Logger.LogInformation("Auto tracked {Name} as cleared", castleTower.Name);

src/TrackerCouncil.Smz3.UI/TrackerCouncil.Smz3.UI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
77
<ApplicationManifest>app.manifest</ApplicationManifest>
88
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
9-
<Version>9.9.4</Version>
9+
<Version>9.9.5</Version>
1010
<AssemblyName>SMZ3CasRandomizer</AssemblyName>
1111
<ApplicationIcon>Assets\smz3.ico</ApplicationIcon>
1212
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>

0 commit comments

Comments
 (0)