mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Move easy filters so Machine can use them
This commit is contained in:
@@ -304,15 +304,15 @@ namespace SabreTools.Library.DatItems
|
||||
#region Common
|
||||
|
||||
// Filter on item name
|
||||
if (!PassStringFilter(filter.DatItem_Name, Name))
|
||||
if (!filter.PassStringFilter(filter.DatItem_Name, Name))
|
||||
return false;
|
||||
|
||||
// Filter on tag
|
||||
if (!PassStringFilter(filter.DatItem_Tag, Tag))
|
||||
if (!filter.PassStringFilter(filter.DatItem_Tag, Tag))
|
||||
return false;
|
||||
|
||||
// Filter on mask
|
||||
if (!PassStringFilter(filter.DatItem_Mask, Mask))
|
||||
if (!filter.PassStringFilter(filter.DatItem_Mask, Mask))
|
||||
return false;
|
||||
|
||||
// Filter on individual conditions
|
||||
|
||||
Reference in New Issue
Block a user