diff --git a/CHANGELIST.md b/CHANGELIST.md index 90f3e396..f83f03c0 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -7,6 +7,7 @@ - Remove now-unneeded parameters classes - Simplify access within processors - Rename Parameters to ExecutionContext +- Ensure check-only implementations still work ### 3.1.9a (2024-05-21) diff --git a/MPF.Core/DumpEnvironment.cs b/MPF.Core/DumpEnvironment.cs index fe02e235..cd702221 100644 --- a/MPF.Core/DumpEnvironment.cs +++ b/MPF.Core/DumpEnvironment.cs @@ -306,7 +306,7 @@ namespace MPF.Core Func? processUserInfo = null, SubmissionInfo? seedInfo = null) { - if (ExecutionContext == null) + if (ExecutionContext == null && Processor == null) return Result.Failure("Error! Current configuration is not supported!"); resultProgress?.Report(Result.Success("Gathering submission information... please wait!"));