Added Crow race. Added "ringbearer" filter with no spaces to match every single other filter.
This commit is contained in:
@@ -10,7 +10,7 @@ public enum Race implements Filterable {
|
||||
DRAGON("Dragon"), EAGLE("Eagle"), BIRD("Bird"),
|
||||
|
||||
//PC Races
|
||||
WARG("Warg");
|
||||
CROW("Crow"), WARG("Warg");
|
||||
|
||||
private String _humanReadable;
|
||||
|
||||
|
||||
@@ -28,6 +28,7 @@ public class FilterFactory {
|
||||
appendFilter(value);
|
||||
|
||||
simpleFilters.put("ring bearer", (actionContext) -> Filters.ringBearer);
|
||||
simpleFilters.put("ringbearer", (actionContext) -> Filters.ringBearer);
|
||||
simpleFilters.put("any", (actionContext) -> Filters.any);
|
||||
simpleFilters.put("self", (actionContext) -> actionContext.getSource());
|
||||
simpleFilters.put("another", (actionContext) -> Filters.not(actionContext.getSource()));
|
||||
|
||||
Reference in New Issue
Block a user