File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -387,12 +387,23 @@ public static bool IsVoid()
387
387
{
388
388
string directory = App . BeatSaberInstallDirectory ;
389
389
string pluginsDirectory = Path . Combine ( directory , "Beat Saber_Data" , "Plugins" ) ;
390
+ string pluginsx86Directory = Path . Combine ( directory , "Beat Saber_Data" , "Plugins" , "x86_64" ) ;
390
391
392
+ if ( File . Exists ( Path . Combine ( pluginsx86Directory , "steam_api64.dll" ) ) )
393
+ {
394
+ string gamesteamapimd5 = Utils . CalculateMD5 ( Path . Combine ( pluginsx86Directory , "steam_api64.dll" ) ) ;
395
+ if ( gamesteamapimd5 == "0276b122929fcd74fee949142d65f6a2" || gamesteamapimd5 == "2a905fbd9833970217ae3fe83118929b" )
396
+ {
397
+ return true ;
398
+ }
399
+ }
391
400
if ( File . Exists ( Path . Combine ( directory , "IGG-GAMES.COM.url" ) ) ||
392
401
File . Exists ( Path . Combine ( directory , "SmartSteamEmu.ini" ) ) ||
393
402
File . Exists ( Path . Combine ( directory , "GAMESTORRENT.CO.url" ) ) ||
394
403
File . Exists ( Path . Combine ( pluginsDirectory , "BSteam crack.dll" ) ) ||
395
404
File . Exists ( Path . Combine ( pluginsDirectory , "HUHUVR_steam_api64.dll" ) ) ||
405
+ File . Exists ( Path . Combine ( pluginsx86Directory , "171VR_提供破解补丁.txt" ) ) ||
406
+ File . Exists ( Path . Combine ( pluginsx86Directory , "171VR_最全VR游戏下载网站.html" ) ) ||
396
407
Directory . GetFiles ( pluginsDirectory , "*.ini" , SearchOption . TopDirectoryOnly ) . Where ( x => Path . GetFileName ( x ) != "desktop.ini" ) . Any ( ) )
397
408
return true ;
398
409
return false ;
You can’t perform that action at this time.
0 commit comments