public static PlayerRecord Load(string path, string steamId, PpPlugin plugin)
        {
            PlayerRecord player = new PlayerRecord(path, steamId, plugin);

            try
            {
                player.Read();
                return(player);
            }
            catch (Exception e)
            {
                plugin.Error($"Preference record {steamId} threw an exception while loading:\n{e}");
                return(null);
            }
        }