mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +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();
|
||||
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
|
||||
if(c.getKeyword().contains("Haste")) {
|
||||
c.setSickness(false);
|
||||
|
||||
Reference in New Issue
Block a user