From 14a71e24c16d186f1391f23df1c31bef41d9127a Mon Sep 17 00:00:00 2001 From: ThisNekoGuy Date: Wed, 20 Apr 2022 16:47:07 +0000 Subject: [PATCH] Added a fix for State of Decay 2 Crashes Added `d3dcompiler_47` to prevent game crashes and `win7` to fix multiplayer and prevent multiplayer crashes. --- protonfixes/gamefixes/495420.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 protonfixes/gamefixes/495420.py diff --git a/protonfixes/gamefixes/495420.py b/protonfixes/gamefixes/495420.py new file mode 100644 index 00000000..d56a20f3 --- /dev/null +++ b/protonfixes/gamefixes/495420.py @@ -0,0 +1,13 @@ +""" Game fix for State of Decay 2 +""" +#pylint: disable=C0103 + +from protonfixes import util + +def main(): + """ Fix game crashes with d3dcompiler_47 and multiplayer crashes with win7 + """ + + util.protontricks('d3dcompiler_47') + util.protontricks('win7') +