small tweak to pattern terminal search

This commit is contained in:
PrototypeTrousers
2023-10-12 16:59:57 -03:00
parent e5f345d49c
commit 10a12a9b97
2 changed files with 4 additions and 0 deletions
@@ -409,6 +409,8 @@ public class GuiInterfaceConfigurationTerminal extends AEBaseGui implements IJEI
}
} else if (displayName.contains(term)) {
foundMatchingItemStack = true;
} else {
return false;
}
}
return foundMatchingItemStack;
@@ -592,6 +592,8 @@ public class GuiInterfaceTerminal extends AEBaseGui {
}
} else if (displayName.contains(term)) {
foundMatchingItemStack = true;
} else {
return false;
}
}
}