A few minor updates and fixes #1

Merged
omicron merged 4 commits from various_fixes into main 2025-09-25 19:09:49 +00:00
Showing only changes of commit 21cf1be326 - Show all commits

View File

@@ -82,7 +82,7 @@ def d2_running() -> bool:
try:
if proc.cmdline()[0].endswith("D2R.exe"):
return True
except (IndexError, psutil.AccessDenied):
except (IndexError, psutil.AccessDenied, psutil.ZombieProcess):
pass
return False