[DatFile] Make skippers work more properly

This commit is contained in:
Matt Nadareski
2016-10-25 10:38:26 -07:00
parent 2366116d98
commit b85d2df0ca
2 changed files with 135 additions and 39 deletions

View File

@@ -352,6 +352,12 @@ namespace SabreTools.Helper.Skippers
{
SkipperRule skipperRule = new SkipperRule();
// If we have a null skipper name, we return since we're not matching skippers
if (skipperName == null)
{
return skipperRule;
}
// Loop through and find a Skipper that has the right name
logger.Verbose("Beginning search for matching header skip rules");
List<Skipper> tempList = new List<Skipper>();