mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Ensure Water Crystal only triggers when the mill amount is 1 or more (#14307)
This commit is contained in:
parent
413b8fae27
commit
cd88a4058b
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ class TheWaterCrystalEffect extends ReplacementEffectImpl {
|
|||
|
||||
@Override
|
||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||
return game.getOpponents(source.getControllerId()).contains(event.getPlayerId());
|
||||
return game.getOpponents(source.getControllerId()).contains(event.getPlayerId()) && event.getAmount() >= 1;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue