Refresh batch of games, and fix some Steam Cloud transforms
This commit is contained in:
parent
b3a4153c7a
commit
d28e78ce81
5 changed files with 37093 additions and 4199 deletions
12830
data/manifest.yaml
12830
data/manifest.yaml
File diff suppressed because it is too large
Load diff
1174
data/missing.md
1174
data/missing.md
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
@ -380,6 +380,10 @@ impl Game {
|
||||||
};
|
};
|
||||||
|
|
||||||
for transform in &alt.path_transforms {
|
for transform in &alt.path_transforms {
|
||||||
|
if transform.find.is_empty() || transform.replace.is_empty() {
|
||||||
|
// TODO: How should we handle this?
|
||||||
|
continue;
|
||||||
|
}
|
||||||
path = path.replace(&transform.find, &transform.replace);
|
path = path.replace(&transform.find, &transform.replace);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue