()
| 757 | }); |
| 758 | } |
| 759 | downloadGamePatch() { |
| 760 | return new Promise(async (resolve) => { |
| 761 | this.config.gamePatchUrl = await this.downloadGameFile(this.config.gamePatchUrl, "patch", this.localization("Download Game Patch"), this.localization("Decompress Game Patch")); |
| 762 | resolve(); |
| 763 | }); |
| 764 | } |
| 765 | downloadGameParent() { |
| 766 | return new Promise(async (resolve) => { |
| 767 | this.config.gameParentUrl = await this.downloadGameFile(this.config.gameParentUrl, "parent", this.localization("Download Game Parent"), this.localization("Decompress Game Parent")); |
no test coverage detected