Added another special character to filters

This commit is contained in:
Aidan C. Brady 2015-03-04 21:04:23 -05:00
parent 420a04c361
commit f6a34f59bb

View file

@ -17,7 +17,7 @@ public abstract class TransporterFilter
{
public static final int MAX_LENGTH = 24;
public static final List<Character> SPECIAL_CHARS = Arrays.asList('*', '-', ' ');
public static final List<Character> SPECIAL_CHARS = Arrays.asList('*', '-', ' ', '|');
public EnumColor color;