diff --git a/DragonFruit.Six.API/References.cs b/DragonFruit.Six.API/References.cs index 684e3146..67bcc677 100644 --- a/DragonFruit.Six.API/References.cs +++ b/DragonFruit.Six.API/References.cs @@ -1,7 +1,6 @@ // Dragon6 API Copyright 2020 DragonFruit Network // Licensed under Apache-2. Please refer to the LICENSE file for more info -using System; using System.Collections.Generic; using System.Globalization; using DragonFruit.Six.API.Data.Containers; @@ -94,79 +93,5 @@ public static readonly IReadOnlyDictionary WeaponClasses }; #endregion - - #region Obsolete Dictionaries - - [Obsolete("LegacyRankNames dictionary is deprecated, please use LegacyRanks dictionary instead.")] - public static readonly IReadOnlyDictionary LegacyRankNames - = new Dictionary - { - [0] = "Unranked", - - [1] = "Copper 4", - [2] = "Copper 3", - [3] = "Copper 2", - [4] = "Copper 1", - - [5] = "Bronze 4", - [6] = "Bronze 3", - [7] = "Bronze 2", - [8] = "Bronze 1", - - [9] = "Silver 4", - [10] = "Silver 3", - [11] = "Silver 2", - [12] = "Silver 1", - - [13] = "Gold 4", - [14] = "Gold 3", - [15] = "Gold 2", - [16] = "Gold 1", - - [17] = "Platinum 3", - [18] = "Platinum 2", - [19] = "Platinum 1", - - [20] = "Diamond" - }; - - [Obsolete("RankNames dictionary is deprecated, please use Ranks dictionary instead.")] - public static readonly IReadOnlyDictionary RankNames - = new Dictionary - { - [0] = "Unranked", - - [1] = "Copper 5", - [2] = "Copper 4", - [3] = "Copper 3", - [4] = "Copper 2", - [5] = "Copper 1", - - [6] = "Bronze 5", - [7] = "Bronze 4", - [8] = "Bronze 3", - [9] = "Bronze 2", - [10] = "Bronze 1", - - [11] = "Silver 5", - [12] = "Silver 4", - [13] = "Silver 3", - [14] = "Silver 2", - [15] = "Silver 1", - - [16] = "Gold 3", - [17] = "Gold 2", - [18] = "Gold 1", - - [19] = "Platinum 3", - [20] = "Platinum 2", - [21] = "Platinum 1", - - [22] = "Diamond", - - [23] = "Champion" - }; - - #endregion } }