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:
parent
e5b2b39701
commit
4924622ded
1 changed files with 1 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue