GUI: deck legality and themes improves:

* Improved formats list in deck legality panel (#6854);
 * Added hide button to deck legality panel (#6854);
 * Fixed themes names and added theme info in startup logs;
This commit is contained in:
Oleg Agafonov 2020-08-03 00:07:13 +04:00
parent c9c1bc2b90
commit 309b3f5636
7 changed files with 46 additions and 17 deletions

View file

@ -136,7 +136,7 @@ enum RegenerationShieldsHint implements Hint {
@Override
public String getText(Game game, Ability ability) {
int amount = RegenerateSourceEffect.getRegenerationShieldsAmount(game, ability.getSourceId());
String info = "Regeneration shields: " + amount + " (permanent will be regenerated instead destroy)";
String info = "Regeneration shields: " + amount + " (permanent will be regenerated instead of destroyed)";
if (amount > 0) {
return HintUtils.prepareText(info, null, HintUtils.HINT_ICON_GOOD);
} else {