mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 15:32:08 -08: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
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Permanent permanent = game.getPermanentEntering(source.getSourceId());
|
Permanent permanent = game.getPermanentEntering(source.getSourceId());
|
||||||
if (permanent != null) {
|
if (permanent == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
|
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue