Allow wildcards in transporter oredict filters again
This commit is contained in:
parent
ae77ce0e19
commit
6897b9a3ba
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ public class GuiTOreDictFilter extends GuiMekanism
|
|||
return;
|
||||
}
|
||||
|
||||
if(Character.isLetter(c) || Character.isDigit(c) || isTextboxKey(c, i))
|
||||
if(Character.isLetter(c) || Character.isDigit(c) || TransporterFilter.SPECIAL_CHARS.contains(c) || isTextboxKey(c, i))
|
||||
{
|
||||
oreDictText.textboxKeyTyped(c, i);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue