Skip to content

Commit

Permalink
Add Dungeon Siege 1 and 2 Multiplayer fixes (Open-Wine-Components#178)
Browse files Browse the repository at this point in the history
* Add Dungeon Siege 1 and 2 Multiplayer fixes

* add umu- to file
  • Loading branch information
kasha695 authored Dec 17, 2024
1 parent bbe7e37 commit a2c80f7
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
1 change: 1 addition & 0 deletions gamefixes-gog/umu-39190.py
1 change: 1 addition & 0 deletions gamefixes-gog/umu-39200.py
9 changes: 9 additions & 0 deletions gamefixes-steam/39190.py
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')
11 changes: 11 additions & 0 deletions gamefixes-steam/39200.py
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')
8 changes: 8 additions & 0 deletions gamefixes-umu/umu-39190.py
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')
1 change: 1 addition & 0 deletions gamefixes-umu/umu-39200.py

0 comments on commit a2c80f7

Please sign in to comment.