mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Artificer's Epiphany - Fixed tooltip text (fixes #1148).
This commit is contained in:
parent
d5963642b1
commit
c1dc053e9f
2 changed files with 4 additions and 4 deletions
|
@ -44,8 +44,8 @@ import mage.filter.predicate.mageobject.CardTypePredicate;
|
|||
* @author fireshoes
|
||||
*/
|
||||
public class ArtificersEpiphany extends CardImpl {
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("artifacts");
|
||||
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("you control no artifacts");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
|
|
|
@ -27,12 +27,12 @@
|
|||
*/
|
||||
package mage.abilities.effects.common.discard;
|
||||
|
||||
import mage.constants.Outcome;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.dynamicvalue.DynamicValue;
|
||||
import mage.abilities.dynamicvalue.common.StaticValue;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.Outcome;
|
||||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
import mage.util.CardUtil;
|
||||
|
@ -98,7 +98,7 @@ public class DiscardControllerEffect extends OneShotEffect {
|
|||
}
|
||||
|
||||
private void setText() {
|
||||
StringBuilder sb = new StringBuilder("Discard ");
|
||||
StringBuilder sb = new StringBuilder("discard ");
|
||||
if (amount.toString().equals("1")) {
|
||||
sb.append("a");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue