Merge fix, additional comments

This commit is contained in:
Oleg Agafonov 2021-07-09 07:36:40 +04:00
parent 572104b8fc
commit 30bb7cd42e
4 changed files with 16 additions and 4 deletions

View file

@ -5,6 +5,12 @@ import mage.game.permanent.PermanentToken;
public class CreatedTokenEvent extends GameEvent {
/**
* Single token per event (if token created and was put to battlefield)
*
* @param source
* @param tokenPerm
*/
public CreatedTokenEvent(Ability source, PermanentToken tokenPerm) {
super(GameEvent.EventType.CREATED_TOKEN, tokenPerm.getId(), source, tokenPerm.getControllerId());
}