[bugfix] Do not apply --no-yeet on original copies of BS (Steam/Oculus)

This commit is contained in:
MathieuG-P
2024-11-20 20:49:23 +01:00
parent 6c6d47333d
commit 3027331924
@@ -14,8 +14,11 @@ export abstract class AbstractLauncherService {
}
protected buildBsLaunchArgs(launchOptions: LaunchOption): string[]{
const launchArgs = ["--no-yeet"];
const launchArgs = [];
if(!launchOptions.version.steam && !launchOptions.version.oculus){
launchArgs.push("--no-yeet")
}
if (launchOptions.oculus) {
launchArgs.push("-vrmode");
launchArgs.push("oculus");