Fixed IntComparePredicate

This commit is contained in:
North 2012-08-03 22:37:16 +03:00
parent 3cea1b6132
commit 0e326b76df

View file

@ -49,7 +49,7 @@ public abstract class IntComparePredicate<T extends MageObject> implements Predi
@Override
public final boolean apply(T input, Game game) {
int inputValue = input.getPower().getValue();
int inputValue = getInputValue(input);
switch (type) {
case Equal:
if (inputValue != value) {