* Curse of Shallow Graves - Fixed that tokens did not enter the battlefield tapped.

This commit is contained in:
LevelX2 2014-01-03 12:05:17 +01:00
parent 12c09545b5
commit cb4b2cbc05

View file

@ -55,7 +55,7 @@ public class CreateTokenTargetEffect extends OneShotEffect<CreateTokenTargetEffe
@Override
public boolean apply(Game game, Ability source) {
int value = amount.calculate(game, source);
token.putOntoBattlefield(value, game, source.getSourceId(), targetPointer.getFirst(game, source));
token.putOntoBattlefield(value, game, source.getSourceId(), targetPointer.getFirst(game, source), tapped, attacking);
return true;
}