1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-03 09:18:59 -09:00

* Rapid Hybridization - Fix token isn't put onto the battlefield when creature isn't destroyed

This commit is contained in:
Quercitron 2014-07-18 02:34:35 +04:00
parent e5b2b39701
commit 4924622ded

View file

@ -37,7 +37,6 @@ import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.Token;
@ -89,7 +88,7 @@ class RapidHybridizationEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = (Permanent) game.getLastKnownInformation(targetPointer.getFirst(game, source), Zone.BATTLEFIELD);
Permanent permanent = (Permanent) game.getPermanentOrLKIBattlefield(targetPointer.getFirst(game, source));
if (permanent != null) {
RapidHybridizationToken token = new RapidHybridizationToken();
token.putOntoBattlefield(1, game, source.getId(), permanent.getControllerId());