Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "IsVoid" anti-piracy detection #416

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

InvoxiPlayGames
Copy link

This PR should fix two bugs:

  • A recent(?) update to Beat Saber moved all native plugins into an x86_64 subdirectory, breaking ModAssistant's detection.

  • Certain Windows systems will create an all-uppercase DESKTOP.INI file, causing false flags as ModAssistant previously only checked for lowercase desktop.ini.

(Also a note for the devs: have you considered removing the checks? It seems trivial to bypass, false flags can happen as not every ini is a keygen, and the company that owns Beat Saber is Facebook...)

@@ -385,14 +385,14 @@ public static string GetManualFile(string filter = "", string title = "Open File
public static bool IsVoid()
{
string directory = App.BeatSaberInstallDirectory;
string pluginsDirectory = Path.Combine(directory, "Beat Saber_Data", "Plugins");
string pluginsDirectory = Path.Combine(directory, "Beat Saber_Data", "Plugins", "x86_64"); // newer version of bs use x86_64 for plugins folder
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of changing the plugins directory it would be best if ModAssistant checks both, since it can be used on older versions of the game too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants