1
0
Fork 0
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:
magenoxx 2011-08-03 00:16:39 +04:00
parent 0b3bbb8825
commit 2fb44ec737

View file

@ -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) {