diff --git a/RobloxUltimateScraper/Config.cs b/RobloxUltimateScraper/Config.cs index 8330079..28bf3c5 100644 --- a/RobloxUltimateScraper/Config.cs +++ b/RobloxUltimateScraper/Config.cs @@ -15,17 +15,23 @@ internal enum OutputType /// /// Asset files /// - FilesOnly, + Files = 0, + + [Obsolete] + FilesOnly = 0, /// /// Asset index /// - IndexOnly, + Index = 1, + + [Obsolete] + IndexOnly = 1, /// /// Asset files and index /// - Both + Both = 2 } /// diff --git a/RobloxUltimateScraper/Scraper.cs b/RobloxUltimateScraper/Scraper.cs index f563062..792537c 100644 --- a/RobloxUltimateScraper/Scraper.cs +++ b/RobloxUltimateScraper/Scraper.cs @@ -23,12 +23,12 @@ internal static class Scraper /// /// Is index enabled /// - public static bool IndexEnabled { get { return Config.Default.OutputType == OutputType.IndexOnly || Config.Default.OutputType == OutputType.Both; } } + public static bool IndexEnabled { get { return Config.Default.OutputType == OutputType.Index || Config.Default.OutputType == OutputType.Both; } } /// /// Are files enabled /// - public static bool FilesEnabled { get { return Config.Default.OutputType == OutputType.FilesOnly || Config.Default.OutputType == OutputType.Both; } } + public static bool FilesEnabled { get { return Config.Default.OutputType == OutputType.Files || Config.Default.OutputType == OutputType.Both; } } /// /// Versions that successfully downloaded