Skip to content

Commit

Permalink
Add support for Wo Long: Fallen Dynasty
Browse files Browse the repository at this point in the history
Closes #44
  • Loading branch information
Z1ni committed Oct 8, 2023
1 parent b39819e commit 8fc0e8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Legend: ✅ Confirmed working, ❔ Unconfirmed, - Not available in the store
| Game | Tested w/ Steam | Tested w/ Epic |
|-|-|-|
| Starfield || - |
| Wo Long: Fallen Dynasty || - |
| Chained Echoes |||
| Persona 5 Royal |||
| Celeste |||
Expand Down
7 changes: 4 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"Totally Accurate Battle Simulator": "LandfallGames.TotallyAccurateBattleSimulator_r2vq7k2y0v9ct",
"Celeste": "MattMakesGamesInc.Celeste_79daxvg0dq3v6",
"Persona 5 Royal": "SEGAofAmericaInc.F0cb6b3aer_s751p9cej88mt",
"Chained Echoes": "DECK13.ChainedEchoesRelease_rn1dn9jh54zft"
"Chained Echoes": "DECK13.ChainedEchoesRelease_rn1dn9jh54zft",
"Wo Long: Fallen Dynasty": "946B6A6E.WoLongFallenDynasty_dkffhzhmh6pmy"
}

filetime_epoch = datetime(1601, 1, 1, tzinfo=timezone.utc)
Expand Down Expand Up @@ -357,8 +358,8 @@ def get_save_paths(store_pkg_name, containers, temp_dir):

save_meta.append((fname, fpath))

elif store_pkg_name == supported_xgp_apps["Persona 5 Royal"]:
# Persona 5 Royal
elif store_pkg_name in [supported_xgp_apps["Persona 5 Royal"], supported_xgp_apps["Wo Long: Fallen Dynasty"]]:
# Persona 5 Royal and Wo Long: Fallen Dynasty
# Each container represents one folder
for container in containers:
folder_name: str = container["name"]
Expand Down

0 comments on commit 8fc0e8b

Please sign in to comment.