Fixed tooltip text for search and put on library effect.

This commit is contained in:
LevelX2 2014-11-03 08:00:29 +01:00
parent 999528e633
commit 2ccb454a3f

View file

@ -115,7 +115,13 @@ public class SearchLibraryPutOnLibraryEffect extends SearchEffect {
private void setText() {
StringBuilder sb = new StringBuilder();
sb.append("Search your library for a ").append(target.getTargetName()).append(", then shuffle your library and put that card on top of it");
sb.append("Search your library for a ").append(target.getTargetName());
if (reveal) {
sb.append("and reveal that card. Shuffle");
} else {
sb.append(", then shuffle");
}
sb.append(" your library and put that card on top of it");
staticText = sb.toString();
}