Followers can be assigned to your companion or minion.

This commit is contained in:
marcins78@gmail.com
2012-03-06 23:32:37 +00:00
parent 01534906bd
commit 24bedfcedb

View File

@@ -65,7 +65,7 @@ public abstract class AbstractFollower extends AbstractPermanent {
protected abstract Effect getAidCost(LotroGame game, PhysicalCard self);
protected Filterable getFollowerTarget(LotroGame game, PhysicalCard self) {
return CardType.COMPANION;
return Filters.and(Filters.owner(self.getOwner()), Filters.or(CardType.COMPANION, CardType.MINION));
}
@Override