mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Bug Fix: If Sower of Temptation is not in play when it's ability resolves, it's ability will not do anything.
This commit is contained in:
@@ -8500,7 +8500,8 @@ public class CardFactory_Creatures {
|
|||||||
Card c = getTargetCard();
|
Card c = getTargetCard();
|
||||||
movedCreature[0] = c;
|
movedCreature[0] = c;
|
||||||
|
|
||||||
if(AllZone.GameAction.isCardInPlay(c) && CardFactoryUtil.canTarget(card, c)) {
|
if(AllZone.GameAction.isCardInPlay(card) && AllZone.GameAction.isCardInPlay(c) &&
|
||||||
|
CardFactoryUtil.canTarget(card, c)) {
|
||||||
//set summoning sickness
|
//set summoning sickness
|
||||||
if(c.getKeyword().contains("Haste")) {
|
if(c.getKeyword().contains("Haste")) {
|
||||||
c.setSickness(false);
|
c.setSickness(false);
|
||||||
|
|||||||
Reference in New Issue
Block a user