Skip to content

Commit

Permalink
Some house-keeping to remove dead features.
Browse files Browse the repository at this point in the history
Roblox sucks.
  • Loading branch information
MaximumADHD committed Nov 2, 2023
1 parent 89046e2 commit b120f41
Show file tree
Hide file tree
Showing 8 changed files with 74 additions and 1,166 deletions.
6 changes: 5 additions & 1 deletion ProjectSrc/Bootstrapper/StudioBootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ public class StudioBootstrapper
public int Progress = 0;
public int MaxProgress = 0;
public ProgressBarStyle ProgressBarStyle = ProgressBarStyle.Continuous;

private Task StartEventTask;
public object ProgressLock = new object();

public Channel Channel { get; set; } = "LIVE";
Expand Down Expand Up @@ -1046,11 +1048,13 @@ await Task
echo("Applying flag configuration...");
FlagEditor.ApplyFlags();

/*
echo("Patching explorer icons...");
await ClassIconEditor
.PatchExplorerIcons()
.ConfigureAwait(true);
*/

// Secret feature only for me :(
// Feel free to patch in your own thing if you want.
Expand All @@ -1070,7 +1074,7 @@ await ClassIconEditor

if (SetStartEvent)
{
_ = Task.Run(async () =>
StartEventTask = Task.Run(async () =>
{
var start = new SystemEvent(StartEvent);
Expand Down
224 changes: 0 additions & 224 deletions ProjectSrc/Forms/ClassIconEditor.Designer.cs

This file was deleted.

Loading

0 comments on commit b120f41

Please sign in to comment.