fix for endreksahr

This commit is contained in:
ingmargoudt 2017-04-13 07:50:11 +02:00
parent 0920c6dcad
commit 58b7148de9

View file

@ -69,7 +69,7 @@ public class ControlsPermanentsControllerTriggeredAbility extends StateTriggered
@Override
public boolean checkTrigger(GameEvent event, Game game) {
int inputValue = game.getBattlefield().countAll(filter, getControllerId(), game);
return ComparisonType.compare(value, type, inputValue);
return ComparisonType.compare(inputValue, type, value);
}
@Override