mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed a fix
This commit is contained in:
parent
b33c1bf0b7
commit
45b56d8891
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ class ApocalypseHydraEffect extends OneShotEffect {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Permanent permanent = game.getPermanentEntering(source.getSourceId());
|
||||
if (permanent != null) {
|
||||
if (permanent == null) {
|
||||
return false;
|
||||
}
|
||||
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
|
||||
|
|
Loading…
Reference in a new issue