Remove no longer needed debugging leftover

Since interactive console is much more convenient to debug with, this no longer serves any purpose
This commit is contained in:
Archi
2023-01-24 23:25:39 +01:00
parent b323a17fba
commit ebd8cbf270
2 changed files with 1 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ public static class ASF {
throw new ArgumentOutOfRangeException(nameof(steamID));
}
return (steamID == GlobalConfig?.SteamOwnerID) || (Debugging.IsDebugBuild && (steamID == SharedInfo.ArchiSteamID));
return steamID == GlobalConfig?.SteamOwnerID;
}
internal static string GetFilePath(EFileType fileType) {

View File

@@ -32,7 +32,6 @@ public static class SharedInfo {
[PublicAPI]
public const string ConfigDirectory = "config";
internal const ulong ArchiSteamID = 76561198006963719;
internal const string ArchivalLogFile = "log.{#}.txt";
internal const string ArchivalLogsDirectory = "logs";
internal const string ASF = nameof(ASF);