ScummVM: fix of last-minute-before-commit bug

This commit is contained in:
Alexander Weber 2023-10-10 15:25:00 +02:00
parent 870a1ce012
commit 0cfbef2cb4

View file

@ -48,7 +48,6 @@ class ScummvmService(BaseService):
game.name = config[section]["description"]
game.slug = slugify(re.split(r" \(.*\)$", game.name)[0])
game.appid = section
game.game_id = section
game.runner = "scummvm"
game.lutris_slug = game.slug
game.details = json.dumps({
@ -66,7 +65,7 @@ class ScummvmService(BaseService):
"runner": "scummvm",
"script": {
"game": {
"game_id": game["game_id"],
"game_id": game["appid"],
"path": details["path"],
"platform": "scummvm"
}