mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Renamed Effect.
This commit is contained in:
parent
2b3bf70d54
commit
c299ee9461
1 changed files with 5 additions and 5 deletions
|
@ -43,26 +43,26 @@ import java.util.Set;
|
|||
/**
|
||||
* @author magenoxx_at_gmail.com
|
||||
*/
|
||||
public class CastCardFromOursideTheGameEffect extends OneShotEffect<CastCardFromOursideTheGameEffect> {
|
||||
public class CastCardFromOutsideTheGameEffect extends OneShotEffect<CastCardFromOutsideTheGameEffect> {
|
||||
|
||||
private static final String choiceText = "Cast a card from outside the game?";
|
||||
|
||||
private FilterCard filterCard;
|
||||
|
||||
public CastCardFromOursideTheGameEffect(FilterCard filter, String ruleText) {
|
||||
public CastCardFromOutsideTheGameEffect(FilterCard filter, String ruleText) {
|
||||
super(Constants.Outcome.Benefit);
|
||||
this.staticText = ruleText;
|
||||
this.filterCard = filter;
|
||||
}
|
||||
|
||||
public CastCardFromOursideTheGameEffect(final CastCardFromOursideTheGameEffect effect) {
|
||||
public CastCardFromOutsideTheGameEffect(final CastCardFromOutsideTheGameEffect effect) {
|
||||
super(effect);
|
||||
filterCard = effect.filterCard;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CastCardFromOursideTheGameEffect copy() {
|
||||
return new CastCardFromOursideTheGameEffect(this);
|
||||
public CastCardFromOutsideTheGameEffect copy() {
|
||||
return new CastCardFromOutsideTheGameEffect(this);
|
||||
}
|
||||
|
||||
@Override
|
Loading…
Reference in a new issue