mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00: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) {
|
||||
this(token, new StaticValue(1));
|
||||
setText();
|
||||
}
|
||||
|
||||
public CreateTokenEffect(Token token, int amount) {
|
||||
|
@ -58,6 +57,7 @@ public class CreateTokenEffect extends OneShotEffect<CreateTokenEffect> {
|
|||
super(Outcome.PutCreatureInPlay);
|
||||
this.token = token;
|
||||
this.amount = amount.clone();
|
||||
setText();
|
||||
}
|
||||
|
||||
public CreateTokenEffect(final CreateTokenEffect effect) {
|
||||
|
|
Loading…
Reference in a new issue