Skip to content

Commit 14c91ad

Browse files
committed
Wip add vanilla BGM options (make installer install BGM patch onto unmodded game)
1 parent ab25b97 commit 14c91ad

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

higurashiInstaller.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,9 @@ def main(fullInstallConfiguration):
504504
keepDownloads = modOptionParser.keepDownloads
505505

506506
# The Partial Manual Install option is mainly for Windows, so please don't assume it works properly on Linux/MacOS
507-
if modOptionParser.partialManualInstall:
507+
if fullInstallConfiguration.subModConfig.subModName == 'vanilla':
508+
pass
509+
elif modOptionParser.partialManualInstall:
508510
extractDir = fullInstallConfiguration.subModConfig.modName + " " + fullInstallConfiguration.subModConfig.subModName + " Extracted"
509511
installer = Installer(fullInstallConfiguration, extractDirectlyToGameDirectory=False, modOptionParser=modOptionParser, forcedExtractDirectory=extractDir)
510512
installer.download()

installData.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,14 @@
3131
{"name": "script", "url":"https://github.com/07th-mod/onikakushi/releases/download/v0.9.0/Onikakushi.Voice.Patch.v0.9.0.7z", "priority": 5, "installOnRepair": true}
3232
],
3333
"fileOverrides" : []
34+
},
35+
{
36+
"name": "vanilla",
37+
"descriptionID": "higurashiVanilla",
38+
"files":[
39+
{"name": "base", "url":"https://github.com/07th-mod/patch-releases/releases/download/onikakushi-v1.0/onikakushi-base.7z.meta4", "relativeExtractionPath": "07th_mod_temp", "priority": 0}
40+
],
41+
"fileOverrides" : []
3442
}
3543
],
3644
"modOptionGroups": [

versionData.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
{"id": "script", "version": "0.0.1"}
1717
]
1818
},
19+
{
20+
"id" : "Onikakushi Ch.1/vanilla",
21+
"files":[
22+
{"id": "base", "version": "1.0.0"}
23+
]
24+
},
1925
{
2026
"id" : "Watanagashi Ch.2/full",
2127
"files":[

0 commit comments

Comments
 (0)