Fix borked download code

rendering v1.2
Liza 2022-10-24 09:29:46 +02:00
parent ee9f40e7ed
commit 1933973fb8
2 changed files with 3 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0-windows</TargetFramework> <TargetFramework>net6.0-windows</TargetFramework>
<LangVersion>9.0</LangVersion> <LangVersion>9.0</LangVersion>
<Version>1.1.0.0</Version> <Version>1.2.0.0</Version>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>

View File

@ -139,6 +139,7 @@ namespace Pal.Client
if (IsInPotdOrHoh()) if (IsInPotdOrHoh())
FloorMarkers[LastTerritory] = new ConcurrentBag<Marker>(LoadSavedMarkers()); FloorMarkers[LastTerritory] = new ConcurrentBag<Marker>(LoadSavedMarkers());
recreateLayout = true; recreateLayout = true;
DebugMessage = null;
} }
if (!IsInPotdOrHoh()) if (!IsInPotdOrHoh())
@ -283,7 +284,7 @@ namespace Pal.Client
continue; continue;
} }
downloadedMarkers.Add(seenMarker); currentFloorMarkers.Add(downloadedMarker);
} }
} }