Merge branch 'master' into 'master'

Fix a typo in code.

See merge request core-developers/forge!2822
This commit is contained in:
Michael Kamensky
2020-05-19 07:50:26 +00:00

View File

@@ -3212,7 +3212,7 @@ public class Player extends GameEntity implements Comparable<Player> {
if (this.hasKeyword("CantSearchLibrary")) { if (this.hasKeyword("CantSearchLibrary")) {
return false; return false;
} else return targetPlayer == null || !targetPlayer.equals(sa.getActivatingPlayer()) } else return targetPlayer == null || !targetPlayer.equals(sa.getActivatingPlayer())
|| !hasKeyword("Spells and abilities you control can't cause privayou to search your library."); || !hasKeyword("Spells and abilities you control can't cause you to search your library.");
} }