We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f653a1 commit 58d8cb9Copy full SHA for 58d8cb9
1 file changed
Applications/Games/Assassin's Creed III/Steam/script.js
@@ -1,17 +1,23 @@
1
include("engines.wine.quick_script.steam_script");
2
include("engines.wine.verbs.dxvk");
3
+include("engines.wine.verbs.corefonts");
4
+include("engines.wine.verbs.vcrun2008");
5
+
6
+// Doesn't work! - https://github.com/PhoenicisOrg/scripts/pull/967#issuecomment-499492492
7
8
var installerImplementation = {
9
run: function () {
10
new SteamScript()
11
.name("Assassin’s Creed III")
12
.editor("Ubisoft Montreal")
- .author("Plata")
13
+ .author("Plata, KREYREN")
14
.appId(208480)
15
.wineVersion(LATEST_STAGING_VERSION)
16
.wineDistribution("staging")
17
.preInstall(function (wine/*, wizard*/) {
18
wine.DXVK();
19
+ wine.corefonts();
20
+ wine.vcrun2008();
21
})
22
.go();
23
}
0 commit comments