diff --git a/res/cardsfolder/b/blightsteel_colossus.txt b/res/cardsfolder/b/blightsteel_colossus.txt index 5101adf3d07..4508e1eb12b 100644 --- a/res/cardsfolder/b/blightsteel_colossus.txt +++ b/res/cardsfolder/b/blightsteel_colossus.txt @@ -6,7 +6,7 @@ PT:11/11 K:Trample K:Infect K:Indestructible -K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. +K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. SVar:Rarity:Mythic SVar:Picture:http://www.wizards.com/global/images/magic/general/blightsteel_colossus.jpg SetInfo:MBS|Mythic|http://magiccards.info/scans/en/mbs/99.jpg diff --git a/res/cardsfolder/d/darksteel_colossus.txt b/res/cardsfolder/d/darksteel_colossus.txt index bf5021b24b3..d61062493e5 100644 --- a/res/cardsfolder/d/darksteel_colossus.txt +++ b/res/cardsfolder/d/darksteel_colossus.txt @@ -5,7 +5,7 @@ Text:no text PT:11/11 K:Trample K:Indestructible -K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. +K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. SVar:Rarity:Mythic SVar:Picture:http://resources.wizards.com/magic/cards/dst/en-us/card48158.jpg SetInfo:M10|Mythic|http://magiccards.info/scans/en/m10/208.jpg diff --git a/res/cardsfolder/l/legacy_weapon.txt b/res/cardsfolder/l/legacy_weapon.txt index 9afe13b7218..12cc4872773 100644 --- a/res/cardsfolder/l/legacy_weapon.txt +++ b/res/cardsfolder/l/legacy_weapon.txt @@ -3,7 +3,7 @@ ManaCost:7 Types:Legendary Artifact Text:no text A:AB$ ChangeZone | Cost$ W U B R G | ValidTgts$ Permanent | TgtPrompt$ Select target permanent | Origin$ Battlefield | Destination$ Exile | SpellDescription$ Exile target permanent. -K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. +K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. SVar:RemRandomDeck:True SVar:Rarity:Rare SVar:Picture:http://www.wizards.com/global/images/magic/general/legacy_weapon.jpg diff --git a/res/cardsfolder/p/progenitus.txt b/res/cardsfolder/p/progenitus.txt index ce5293ec625..0208921746e 100644 --- a/res/cardsfolder/p/progenitus.txt +++ b/res/cardsfolder/p/progenitus.txt @@ -4,7 +4,7 @@ Types:Legendary Creature Hydra Avatar Text:no text PT:10/10 K:Protection from everything -K:When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. +K:If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead. SVar:Rarity:Mythic SVar:Picture:http://www.wizards.com/global/images/magic/general/progenitus.jpg SetInfo:CFX|Mythic|http://magiccards.info/scans/en/cfx/121.jpg diff --git a/src/main/java/forge/DefaultPlayerZone.java b/src/main/java/forge/DefaultPlayerZone.java index 65441b65295..ff952880eac 100644 --- a/src/main/java/forge/DefaultPlayerZone.java +++ b/src/main/java/forge/DefaultPlayerZone.java @@ -56,7 +56,7 @@ public class DefaultPlayerZone extends PlayerZone implements java.io.Serializabl } if (is(Zone.Graveyard) - && c.hasKeyword("When CARDNAME is put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.")) { + && c.hasKeyword("If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.")) { PlayerZone lib = c.getOwner().getZone(Constant.Zone.Library); lib.add(c); c.getOwner().shuffle();