mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Guardian Beast - fixed game error on usage (miss event type check)
This commit is contained in:
parent
18f6aea632
commit
d6171e20a2
1 changed files with 3 additions and 1 deletions
|
|
@ -84,7 +84,9 @@ class GuardianBeastConditionalEffect extends ContinuousRuleModifyingEffectImpl {
|
|||
|
||||
@Override
|
||||
public boolean checksEventType(GameEvent event, Game game) {
|
||||
return true;
|
||||
return event.getType() == GameEvent.EventType.GAIN_CONTROL
|
||||
|| event.getType() == GameEvent.EventType.ATTACH
|
||||
|| event.getType() == GameEvent.EventType.TARGET;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue