File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ This project exposes Cheat Engine functionality through a REST API server built
3030
3131- ** Cheat Engine 7.6.2+** (minimum version with .NET Core plugin support)
3232- .NET 9.0 SDK
33- - Windows OS
33+ - Windows OS (I don't have a mac but if you can run it then open an issue and let me know.)
3434
3535> [ !IMPORTANT]
3636> Cheat Engine 7.6.2 or newer is required. Older versions do not support .NET Core plugins.
Original file line number Diff line number Diff line change @@ -43,13 +43,9 @@ private static string[] GetThreadList()
4343 threadList . Refresh ( ) ; // Refresh to get current threads
4444 return threadList . GetAllThreads ( ) ;
4545 }
46- catch ( SystemException ex )
47- {
48- throw new InvalidOperationException ( "Failed to get thread list." , ex ) ;
49- }
5046 catch ( Exception ex )
5147 {
52- throw new InvalidOperationException ( "An unexpected error occurred while getting thread list." , ex ) ;
48+ throw new InvalidOperationException ( "Failed to get thread list." , ex ) ;
5349 }
5450 }
5551 }
You can’t perform that action at this time.
0 commit comments