mirror of
https://github.com/lutris/lutris
synced 2024-11-05 18:10:49 +00:00
Simplify steam type runner test, winesteam is deprecated
This commit is contained in:
parent
a518659349
commit
de29aabd92
1 changed files with 1 additions and 5 deletions
|
@ -65,11 +65,7 @@ def all_shortcuts_set(game):
|
|||
|
||||
|
||||
def has_steamtype_runner(game):
|
||||
steamtype_runners = ['steam', 'winesteam']
|
||||
for runner in steamtype_runners:
|
||||
if runner == game.runner_name:
|
||||
return True
|
||||
return False
|
||||
return game.runner_name == "steam"
|
||||
|
||||
|
||||
def update_shortcut(game):
|
||||
|
|
Loading…
Reference in a new issue