-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #217 from UsernamesAreNotMyThing/features
Add functionality to symlink save data from another game's prefix, a few games would benefit from this
- Loading branch information
Showing
3 changed files
with
75 additions
and
6 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 |
---|---|---|
@@ -1,11 +1,8 @@ | ||
"""Game fix for Horizon Zero Dawn Remastered""" | ||
"""Horizon Zero Dawn Remastered""" | ||
|
||
from sys import argv | ||
from os import environ | ||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Won't connect to internet without using `-showlinkingqr` or `SteamDeck=1` options.""" | ||
if environ.get('SteamDeck', '0') == '0' and '-showlinkingqr' not in argv: | ||
util.append_argument('-showlinkingqr') | ||
"""Game allows playing saves from the original Complete Edition, but by default it can't find them.""" | ||
util.import_saves_folder(1151640, 'My Documents/Horizon Zero Dawn') |
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 @@ | ||
"""Final Fantasy VII Rebirth""" | ||
|
||
from protonfixes import util | ||
|
||
|
||
def main() -> None: | ||
"""Grants bonus items to players with save data for Final Fantasy VII Remake Intergrade""" | ||
util.import_saves_folder(1462040, 'Documents/My Games/FINAL FANTASY VII REMAKE') |
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