Skip to content

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...)

{
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
Collaborator

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.

@DeadlyKitten
Copy link
Member

This was fixed in #456.

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.

3 participants