diff --git a/Bloxstrap/Models/State.cs b/Bloxstrap/Models/State.cs index 9273be6..49ece20 100644 --- a/Bloxstrap/Models/State.cs +++ b/Bloxstrap/Models/State.cs @@ -2,7 +2,6 @@ { public class State { - public string LastEnrolledChannel { get; set; } = ""; public bool ShowFFlagEditorWarning { get; set; } = true; [Obsolete("Use PlayerVersionGuid instead", true)] diff --git a/Bloxstrap/ProtocolHandler.cs b/Bloxstrap/ProtocolHandler.cs index 9d5d66f..eb24592 100644 --- a/Bloxstrap/ProtocolHandler.cs +++ b/Bloxstrap/ProtocolHandler.cs @@ -66,7 +66,6 @@ namespace Bloxstrap public static void EnrollChannel(string channel) { ChangeChannel(channel); - App.State.Prop.LastEnrolledChannel = channel; App.State.Save(); }