mirror of
https://github.com/correl/mage.git
synced 2025-04-10 01:01:05 -09:00
Fixed CreateTokenEffect text.
This commit is contained in:
parent
0b3bbb8825
commit
2fb44ec737
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,6 @@ public class CreateTokenEffect extends OneShotEffect<CreateTokenEffect> {
|
||||||
|
|
||||||
public CreateTokenEffect(Token token) {
|
public CreateTokenEffect(Token token) {
|
||||||
this(token, new StaticValue(1));
|
this(token, new StaticValue(1));
|
||||||
setText();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public CreateTokenEffect(Token token, int amount) {
|
public CreateTokenEffect(Token token, int amount) {
|
||||||
|
@ -58,6 +57,7 @@ public class CreateTokenEffect extends OneShotEffect<CreateTokenEffect> {
|
||||||
super(Outcome.PutCreatureInPlay);
|
super(Outcome.PutCreatureInPlay);
|
||||||
this.token = token;
|
this.token = token;
|
||||||
this.amount = amount.clone();
|
this.amount = amount.clone();
|
||||||
|
setText();
|
||||||
}
|
}
|
||||||
|
|
||||||
public CreateTokenEffect(final CreateTokenEffect effect) {
|
public CreateTokenEffect(final CreateTokenEffect effect) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue