forked from Open-Wine-Components/umu-protonfixes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dungeon Siege 1 and 2 Multiplayer fixes (Open-Wine-Components#178)
* Add Dungeon Siege 1 and 2 Multiplayer fixes * add umu- to file
- Loading branch information
Showing
6 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../gamefixes-steam/39190.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../gamefixes-steam/39200.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"""Game fix for Dungeon Siege""" | ||
|
||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Enable Multiplayer and protontricks directplay for full functionality""" | ||
util.append_argument('Zonematch=true') | ||
util.protontricks('directplay') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
"""Game fix for Dungeon Siege II""" | ||
|
||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Apply protontricks directplay for full multiplayer functionality""" | ||
# Even though the Steam version has disabled multiplayer functionality | ||
# many people will apply a fix to unlock Broken Worlds which will also | ||
# enable multiplayer again. | ||
util.protontricks('directplay') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
"""Game fix for Dungeon Siege""" | ||
|
||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Apply protontricks directplay for full multiplayer functionality""" | ||
util.protontricks('directplay') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../gamefixes-steam/39200.py |