From 4a82baa5d1fa2e8cf915e5085a8d7fd8ce48e817 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 21 May 2024 13:41:53 -0400 Subject: [PATCH] Ensure check-only implementations still work --- CHANGELIST.md | 1 + MPF.Core/DumpEnvironment.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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!"));