diff --git a/src/main/services/bs-local-version.service.ts b/src/main/services/bs-local-version.service.ts index 97f3184f..1f8c05a1 100644 --- a/src/main/services/bs-local-version.service.ts +++ b/src/main/services/bs-local-version.service.ts @@ -211,7 +211,7 @@ export class BSLocalVersionService{ public async cloneVersion(version: BSVersion, name: string, color: string): Promise{ const originPath = await this.getVersionPath(version); const cloneVersion: BSVersion = version.BSVersion === name - ? {...version, name: undefined, color} + ? {...version, name: undefined, color, steam: false, oculus: false} : {...version, name: this.removeSpecialChar(name), color, steam: false, oculus: false}; const newPath = await this.getVersionPath(cloneVersion);