mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[MID] fixed Foul Play only targeting creatures with power 1 or less (fixes #8308)
This commit is contained in:
parent
aa0fe5528d
commit
863d8166f1
2 changed files with 4 additions and 2 deletions
|
|
@ -4,7 +4,9 @@ package mage.constants;
|
|||
* Created by IGOUDT on 5-3-2017.
|
||||
*/
|
||||
public enum ComparisonType {
|
||||
MORE_THAN(">", "more", "than"), FEWER_THAN("<", "fewer", "than"), EQUAL_TO("==", "equal", "to");
|
||||
FEWER_THAN("<", "fewer", "than"),
|
||||
EQUAL_TO("==", "equal", "to"),
|
||||
MORE_THAN(">", "more", "than");
|
||||
|
||||
String operator;
|
||||
String text1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue