Small Kismet fix

This commit is contained in:
Quercitron 2013-12-08 03:07:38 +04:00
parent 54e5abd945
commit a9e1907776

View file

@ -82,7 +82,7 @@ class KismetEffect extends ReplacementEffectImpl<KismetEffect> {
public boolean replaceEvent(GameEvent event, Ability source, Game game) { public boolean replaceEvent(GameEvent event, Ability source, Game game) {
Permanent target = game.getPermanent(event.getTargetId()); Permanent target = game.getPermanent(event.getTargetId());
if (target != null) { if (target != null) {
target.tap(game); target.setTapped(true);
} }
return false; return false;
} }