mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
Fixed tooltip text for search and put on library effect.
This commit is contained in:
parent
999528e633
commit
2ccb454a3f
1 changed files with 7 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue