Code cleanup
This commit is contained in:
parent
7e73430179
commit
0b07e8b8f6
@ -15,7 +15,7 @@ namespace Pal.Client.Configuration
|
|||||||
|
|
||||||
public const string ConfigFileName = "palace-pal.config.json";
|
public const string ConfigFileName = "palace-pal.config.json";
|
||||||
|
|
||||||
private static bool? _supportsDpapi = null;
|
private static bool? _supportsDpapi;
|
||||||
public static bool SupportsDpapi
|
public static bool SupportsDpapi
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -20,9 +20,6 @@ namespace Pal.Client.Configuration.Legacy
|
|||||||
|
|
||||||
private static string _pluginConfigDirectory = null!;
|
private static string _pluginConfigDirectory = null!;
|
||||||
|
|
||||||
// might not be true, but this is 'less strict filtering' for migrations
|
|
||||||
private static readonly EMode _mode = EMode.Online;
|
|
||||||
|
|
||||||
internal static void SetContextProperties(string pluginConfigDirectory)
|
internal static void SetContextProperties(string pluginConfigDirectory)
|
||||||
{
|
{
|
||||||
_pluginConfigDirectory = pluginConfigDirectory;
|
_pluginConfigDirectory = pluginConfigDirectory;
|
||||||
@ -38,12 +35,7 @@ namespace Pal.Client.Configuration.Legacy
|
|||||||
|
|
||||||
private void ApplyFilters()
|
private void ApplyFilters()
|
||||||
{
|
{
|
||||||
if (_mode == EMode.Offline)
|
Markers = new ConcurrentBag<JsonMarker>(Markers.Where(x => x.Seen || !x.WasImported || x.Imports.Count > 0));
|
||||||
Markers = new ConcurrentBag<JsonMarker>(Markers.Where(x => x.Seen || (x.WasImported && x.Imports.Count > 0)));
|
|
||||||
else
|
|
||||||
// ensure old import markers are removed if they are no longer part of a "current" import
|
|
||||||
// this MAY remove markers the server sent you (and that you haven't seen), but this should be fixed the next time you enter the zone
|
|
||||||
Markers = new ConcurrentBag<JsonMarker>(Markers.Where(x => x.Seen || !x.WasImported || x.Imports.Count > 0));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JsonFloorState? Load(ushort territoryType)
|
public static JsonFloorState? Load(ushort territoryType)
|
||||||
|
Loading…
Reference in New Issue
Block a user