mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Cowardice will now only trigger for creatures.
This commit is contained in:
@@ -4493,7 +4493,7 @@ public class CardFactoryUtil {
|
||||
//if (AllZone.GameAction.isCardInPlay(c))
|
||||
//{
|
||||
if (c.getKeyword().contains("When CARDNAME becomes the target of a spell or ability, return CARDNAME to its owner's hand.")
|
||||
|| AllZoneUtil.isCardInPlay("Cowardice")) {
|
||||
|| (c.isCreature() && AllZoneUtil.isCardInPlay("Cowardice"))) {
|
||||
SpellAbility ability = new Ability(c, "0")
|
||||
{
|
||||
public void resolve()
|
||||
|
||||
Reference in New Issue
Block a user