fix text generation for creating multiple kinds of tokens

(from #12704)
This commit is contained in:
xenohedron 2024-09-02 19:24:27 -04:00
parent 9daef8a935
commit d0f535a159

View file

@ -90,6 +90,7 @@ public class CreateTokenEffect extends OneShotEffect {
public CreateTokenEffect withAdditionalTokens(Token... tokens) {
this.tokens.addAll(Arrays.asList(tokens));
setText();
return this;
}