Fix patrons in in-game credits (#40840)
This commit is contained in:
committed by
GitHub
parent
beb3db14f0
commit
4eaf7526e4
File diff suppressed because it is too large
Load Diff
@@ -5,4 +5,4 @@ param([string]$csvPath)
|
|||||||
# Dumps Patreon's CSV download into a YAML file the game reads.
|
# Dumps Patreon's CSV download into a YAML file the game reads.
|
||||||
|
|
||||||
# Have to trim patron names because apparently Patreon doesn't which is quite ridiculous.
|
# Have to trim patron names because apparently Patreon doesn't which is quite ridiculous.
|
||||||
Get-content $csvPath | ConvertFrom-Csv -Delimiter "," | select @{l="Name";e={$_.Name.Trim()}},Tier | where-object Tier -ne "" | ConvertTo-Yaml
|
Get-content $csvPath | ConvertFrom-Csv -Delimiter "," | select @{l="Name";e={$_.Name.Trim()}},Tier | where-object Tier -ne "" | where-object Tier -ne "Free" | ConvertTo-Yaml
|
||||||
|
|||||||
Reference in New Issue
Block a user