- Fixed the wording of the keyword: "If CARDNAME would be put into a graveyard from anywhere, reveal CARDNAME and shuffle it into its owner's library instead.".

This commit is contained in:
Sloth
2011-10-19 14:47:30 +00:00
parent d81300d786
commit 09ead4f149
5 changed files with 5 additions and 5 deletions

View File

@@ -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();