fixed a fix

This commit is contained in:
Evan Kranzler 2019-01-05 21:07:37 -05:00
parent b33c1bf0b7
commit 45b56d8891

View file

@ -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);