mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-19 16:33:04 +03:00
Encode game directory string for security
This commit is contained in:
parent
351c883704
commit
5c5f87e792
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export class Genshinlib
|
||||||
public static readonly tmpPatchDir: string = path.join(this.launcherDir, 'gi-on-linux');
|
public static readonly tmpPatchDir: string = path.join(this.launcherDir, 'gi-on-linux');
|
||||||
|
|
||||||
public static readonly prefixDir: string = path.join(this.launcherDir, 'game');
|
public static readonly prefixDir: string = path.join(this.launcherDir, 'game');
|
||||||
public static readonly gameDir: string = path.join(this.prefixDir, 'drive_c', 'Program Files', 'Genshin Impact');
|
public static readonly gameDir: string = path.join(this.prefixDir, 'drive_c', 'Program Files', Buffer.from('R2Vuc2hpbiBJbXBhY3Q=', 'base64').toString('utf-8'));
|
||||||
public static readonly runnersDir: string = path.join(this.launcherDir, 'runners');
|
public static readonly runnersDir: string = path.join(this.launcherDir, 'runners');
|
||||||
public static readonly dxvksDir: string = path.join(this.launcherDir, 'dxvks');
|
public static readonly dxvksDir: string = path.join(this.launcherDir, 'dxvks');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue