mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Fixed Deadeye Quartermaster not searching for vehicles
This commit is contained in:
parent
4385aae8de
commit
ff4445d181
1 changed files with 4 additions and 1 deletions
|
|
@ -49,7 +49,10 @@ public class DeadeyeQuartermaster extends CardImpl {
|
||||||
private static final FilterCard filter = new FilterCard("an Equipment or Vehicle card");
|
private static final FilterCard filter = new FilterCard("an Equipment or Vehicle card");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(Predicates.or(new SubtypePredicate(SubType.EQUIPMENT), new SubtypePredicate(SubType.EQUIPMENT)));
|
filter.add(Predicates.or(
|
||||||
|
new SubtypePredicate(SubType.EQUIPMENT),
|
||||||
|
new SubtypePredicate(SubType.VEHICLE)
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeadeyeQuartermaster(UUID ownerId, CardSetInfo setInfo) {
|
public DeadeyeQuartermaster(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue