🐛 Fixed new location override syntax

This commit is contained in:
GeoffreyCoulaud
2023-06-05 13:21:19 +02:00
parent 1e3e6484e4
commit 725bab5c93
5 changed files with 7 additions and 7 deletions

View File

@@ -105,7 +105,7 @@ class SteamLinuxSource(SteamSource, LinuxSource):
executable_format = "xdg-open steam://rungameid/{game_id}"
@property
@Source.replaced_by_schema_key()
@SteamSource.replaced_by_schema_key()
@replaced_by_path("~/.var/app/com.valvesoftware.Steam/data/Steam/")
@replaced_by_env_path("XDG_DATA_HOME", "Steam/")
@replaced_by_path("~/.steam/")
@@ -119,7 +119,7 @@ class SteamWindowsSource(SteamSource, WindowsSource):
executable_format = "start steam://rungameid/{game_id}"
@property
@Source.replaced_by_schema_key()
@SteamSource.replaced_by_schema_key()
@replaced_by_env_path("programfiles(x86)", "Steam")
def location(self):
raise FileNotFoundError()