* Academy Elite - Fixed that it did not get the +1/+1 counters when entering the battlefield.

This commit is contained in:
LevelX2 2015-12-31 11:13:18 +01:00
parent b0e8b03b74
commit eaa7b6a71c

View file

@ -98,7 +98,7 @@ class AcademyEliteEffect1 extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(source.getSourceId());
Permanent permanent = game.getPermanentEntering(source.getSourceId());
if (permanent != null) {
SpellAbility spellAbility = (SpellAbility) getValue(EntersBattlefieldEffect.SOURCE_CAST_SPELL_ABILITY);
if (spellAbility != null