mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
* Hurl Through Hell - fixed that it doesn't exile a creature (#8211);
This commit is contained in:
parent
912e695f40
commit
e209822190
2 changed files with 4 additions and 1 deletions
|
@ -62,7 +62,7 @@ class HurlThroughHellEffect extends OneShotEffect {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
PlayFromNotOwnHandZoneTargetEffect.exileAndPlayFromExile(
|
PlayFromNotOwnHandZoneTargetEffect.exileAndPlayFromExile(
|
||||||
game, source, permanent.getMainCard(), TargetController.YOU,
|
game, source, permanent, TargetController.YOU,
|
||||||
Duration.UntilEndOfYourNextTurn,
|
Duration.UntilEndOfYourNextTurn,
|
||||||
false, true, true
|
false, true, true
|
||||||
);
|
);
|
||||||
|
|
|
@ -152,6 +152,9 @@ public class PlayFromNotOwnHandZoneTargetEffect extends AsThoughEffectImpl {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exiles the cards and let the allowed player play them from exile for the given duration
|
* Exiles the cards and let the allowed player play them from exile for the given duration
|
||||||
|
* Supports:
|
||||||
|
* - cards (use any side)
|
||||||
|
* - permanents (use permanent, not permanent's card)
|
||||||
*
|
*
|
||||||
* @param game
|
* @param game
|
||||||
* @param source
|
* @param source
|
||||||
|
|
Loading…
Reference in a new issue