make static props private

This commit is contained in:
CWX
2025-04-16 10:59:43 +01:00
parent d9100412a7
commit edebe3fb66
2 changed files with 8 additions and 8 deletions
@@ -4,8 +4,8 @@ namespace SPTarkov.Server.Core.Utils;
public static partial class ProgramStatics
{
public static string? _sptVersion = "0.0.0";
public static string? _commit = "a12b34";
public static double? _buildTime = 0000000000;
public static EntryType? BuildType = EntryType.LOCAL;
private static string? _sptVersion = "0.0.0";
private static string? _commit = "a12b34";
private static double? _buildTime = 0000000000;
private static EntryType? BuildType = EntryType.LOCAL;
}