mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Fix minor typo in verify inputs check
This commit is contained in:
@@ -17,6 +17,7 @@
|
||||
- Fix strange invocations of extension methods
|
||||
- Remove CommandOptions implementations
|
||||
- Exit early on parsing failures
|
||||
- Fix minor typo in verify inputs check
|
||||
|
||||
### 3.4.2 (2025-09-30)
|
||||
|
||||
|
||||
@@ -216,6 +216,6 @@ namespace MPF.Check.Features
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override bool VerifyInputs() => true;
|
||||
public override bool VerifyInputs() => Inputs.Count > 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace MPF.Check
|
||||
DisplayHelp();
|
||||
return;
|
||||
}
|
||||
else if (!mainFeature.VerifyInputs())
|
||||
else if (!interactive.VerifyInputs())
|
||||
{
|
||||
DisplayHelp("At least one input is required");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user