mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 11:32:00 -08:00
Small Kismet fix
This commit is contained in:
parent
54e5abd945
commit
a9e1907776
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue