From a9b3d43ab26af7f42e540c92f4aa7722475f2915 Mon Sep 17 00:00:00 2001 From: pizzaboxer Date: Fri, 25 Aug 2023 23:25:08 +0100 Subject: [PATCH] Fix "access is denied" error I LOVE TESTING IN PROD --- Bloxstrap/Bootstrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bloxstrap/Bootstrapper.cs b/Bloxstrap/Bootstrapper.cs index 0302340..8ad6485 100644 --- a/Bloxstrap/Bootstrapper.cs +++ b/Bloxstrap/Bootstrapper.cs @@ -980,7 +980,7 @@ namespace Bloxstrap { const string LOG_IDENT = "Bootstrapper::ApplyModifications"; - if (Process.GetProcessesByName("RobloxPlayerBeta").Where(x => x.MainModule!.FileName == _playerLocation).Any()) + if (Process.GetProcessesByName("RobloxPlayerBeta").Any()) { App.Logger.WriteLine(LOG_IDENT, "Roblox is running, aborting mod check"); return;