From 3824afddafc31f231b1ad9633d1b78de4952b68a Mon Sep 17 00:00:00 2001 From: Knaspin <62482967+Knaspin@users.noreply.github.com> Date: Mon, 13 Apr 2026 23:03:24 +0100 Subject: [PATCH] Add games with "Play Action" ticked. --- Source/AutoImport.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/AutoImport.cs b/Source/AutoImport.cs index 76b9ebd..53112d6 100644 --- a/Source/AutoImport.cs +++ b/Source/AutoImport.cs @@ -190,7 +190,8 @@ private IEnumerable GetExecutablesInDir(string dirPath, Hash Type = GameActionType.File, Path = fileInfo.FullName, WorkingDir = fileInfo.DirectoryName, - Name = "Play" + Name = "Play", + IsPlayAction = true } } }; @@ -255,4 +256,4 @@ private bool IsGameExecutable(string path) return !(fileName.Contains("uninstall") || fileName.Contains("setup") || fileName.Contains("config") || fileName.Contains("crash")); } } -} \ No newline at end of file +}