mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Changed CostExiledMoveToGrave's toString method to better match text on cards.
This commit is contained in:
@@ -43,7 +43,7 @@ public class CostExiledMoveToGrave extends CostPartWithList {
|
||||
final String desc = getTypeDescription() == null ? getType() : getTypeDescription();
|
||||
sb.append(Cost.convertAmountTypeToWords(i, getAmount(), desc));
|
||||
|
||||
sb.append(" into its owner's graveyard");
|
||||
sb.append(" from exile into that player's graveyard");
|
||||
|
||||
return sb.toString();
|
||||
}
|
||||
@@ -71,10 +71,7 @@ public class CostExiledMoveToGrave extends CostPartWithList {
|
||||
CardCollectionView typeList = activator.getGame().getCardsIn(ZoneType.Exile);
|
||||
|
||||
typeList = CardLists.getValidCards(typeList, getType().split(";"), activator, source);
|
||||
if (typeList.size() < i) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
return typeList.size() >= i;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user