Skip to content

Commit a371228

Browse files
authored
No base command is a dumping command
1 parent e25b7e5 commit a371228

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

MPF.ExecutionContexts/Redumper/ExecutionContext.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@ public override string GenerateParameters()
244244
public override bool IsDumpingCommand()
245245
{
246246
// `dump` command does not provide hashes so will error out after dump if run via MPF
247-
return ModeValues?.Contains(CommandStrings.Disc) == true;
247+
return ModeValues?.Contains(CommandStrings.None) == true
248+
|| ModeValues?.Contains(CommandStrings.Disc) == true;
248249
}
249250

250251
/// <inheritdoc/>

0 commit comments

Comments
 (0)