mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Squirrel Powered Scheme set to ignore planar dies
This commit is contained in:
parent
2f001cb2c4
commit
b05754bd61
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,8 @@ class SquirrelPoweredSchemeEffect extends ReplacementEffectImpl {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean applies(GameEvent event, Ability source, Game game) {
|
public boolean applies(GameEvent event, Ability source, Game game) {
|
||||||
return source.getControllerId().equals(event.getPlayerId());
|
// ignore planar dies (dice roll amount of planar dies is equal to 0)
|
||||||
|
return event.getAmount() > 0 && source.getControllerId().equals(event.getPlayerId());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue