We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f608be5 commit 67c39ccCopy full SHA for 67c39cc
build_common.ps1
@@ -370,7 +370,12 @@ class BuildProject {
370
Write-Host "Read."
371
372
Write-Host "Writing mod metadata..."
373
- Set-Content "$($this.xcomModPath)" "[mod]`npublishedFileId=$publishedId`nTitle=$title`nDescription=$description`nRequiresXPACK=true"
+ if ($this.sdkPath -clike "*Chosen*") {
374
+ Set-Content "$($this.xcomModPath)" "[mod]`npublishedFileId=$publishedId`nTitle=$title`nDescription=$description`nRequiresXPACK=true"
375
+ }
376
+ else {
377
+ Set-Content "$($this.xcomModPath)" "[mod]`npublishedFileId=$publishedId`nTitle=$title`nDescription=$description"
378
379
Write-Host "Written."
380
381
# Create CookedPCConsole folder for the mod
0 commit comments