Skip to content

Commit

Permalink
Merge pull request #2942 from pizzaboxer/qol/remove-unnecessary
Browse files Browse the repository at this point in the history
Remove unnecessary stuff from the code
  • Loading branch information
pizzaboxer committed Sep 21, 2024
2 parents c58a8ab + 7e8b699 commit 99d2d10
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions Bloxstrap/Bootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -753,8 +753,7 @@ private async Task ApplyModifications()

List<string> modFolderFiles = new();

if (!Directory.Exists(Paths.Modifications))
Directory.CreateDirectory(Paths.Modifications);
Directory.CreateDirectory(Paths.Modifications);

// check custom font mod
// instead of replacing the fonts themselves, we'll just alter the font family manifests
Expand Down
1 change: 0 additions & 1 deletion Bloxstrap/Integrations/ActivityWatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ public class ActivityWatcher : IDisposable
public event EventHandler? OnAppClose;
public event EventHandler<Message>? OnRPCMessage;

private readonly Dictionary<string, string> GeolocationCache = new();
private DateTime LastRPCRequest;

public string LogLocation = null!;
Expand Down
1 change: 0 additions & 1 deletion Bloxstrap/Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public static VersionComparison CompareVersions(string versionStr1, string versi

public static string GetRobloxVersion(bool studio)
{
string versionGuid = studio ? App.State.Prop.Studio.VersionGuid : App.State.Prop.Player.VersionGuid;
string fileName = studio ? "Studio/RobloxStudioBeta.exe" : "Player/RobloxPlayerBeta.exe";

string playerLocation = Path.Combine(Paths.Roblox, fileName);
Expand Down

0 comments on commit 99d2d10

Please sign in to comment.