mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Skip mod check if Roblox is running
This commit is contained in:
parent
85c19a5e0d
commit
1f86996d7d
@ -1041,6 +1041,12 @@ namespace Bloxstrap
|
||||
{
|
||||
const string LOG_IDENT = "Bootstrapper::ApplyModifications";
|
||||
|
||||
if (Process.GetProcessesByName("RobloxPlayerBeta").Where(x => x.MainModule!.FileName == _playerLocation).Any())
|
||||
{
|
||||
App.Logger.WriteLine(LOG_IDENT, "Roblox is running, aborting mod check");
|
||||
return;
|
||||
}
|
||||
|
||||
SetStatus("Applying Roblox modifications...");
|
||||
|
||||
// set executable flags for fullscreen optimizations
|
||||
|
Loading…
Reference in New Issue
Block a user