mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
CardCriteria: fix subtype
This commit is contained in:
parent
881fdcaa08
commit
a4ced51058
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ public class CardCriteria {
|
|||
}
|
||||
|
||||
for (SubType subType : subtypes) {
|
||||
where.like("subtypes", new SelectArg('%' + subType.name() + '%'));
|
||||
where.like("subtypes", new SelectArg('%' + subType.toString() + '%'));
|
||||
clausesCount++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue