diff --git a/Bloxstrap/AppData/RobloxPlayerData.cs b/Bloxstrap/AppData/RobloxPlayerData.cs index bba6cc8..60bec40 100644 --- a/Bloxstrap/AppData/RobloxPlayerData.cs +++ b/Bloxstrap/AppData/RobloxPlayerData.cs @@ -1,8 +1,4 @@ -using System; using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace Bloxstrap.AppData { @@ -18,9 +14,9 @@ namespace Bloxstrap.AppData public override AppState State => App.RobloxState.Prop.Player; - public override IReadOnlyDictionary PackageDirectoryMap { get; set; } = new Dictionary() + public override IReadOnlyDictionary PackageDirectoryMap { get; } = new Dictionary { - { "RobloxApp.zip", @"" } + { "RobloxApp.zip", string.Empty } }; } }