Merge branch 'typo' into 'master'

Some typos

Closes #1584

See merge request core-developers/forge!3168
This commit is contained in:
Sol
2020-09-22 00:23:02 +00:00
6 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ ManaCost:3 B B
Types:Creature Vampire Noble
PT:3/4
K:Flying
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigBite | TriggerDescription$ When CARDNAME enters the battlefield target opponent loses 3 life and you gain 3 life.
T:Mode$ ChangesZone | Origin$ Any | Destination$ Battlefield | ValidCard$ Card.Self | Execute$ TrigBite | TriggerDescription$ When CARDNAME enters the battlefield, target opponent loses 3 life and you gain 3 life.
SVar:TrigBite:DB$ LoseLife | ValidTgts$ Opponent | TgtPrompt$ Select an opponent | LifeAmount$ 3 | SubAbility$ DBGainLife | SpellDescription$ Target opponent loses 3 life and you gain 3 life.
SVar:DBGainLife:DB$ GainLife | LifeAmount$ 3
Oracle:Flying\nWhen Vampire Sovereign enters the battlefield, target opponent loses 3 life and you gain 3 life.

View File

@@ -54,7 +54,7 @@ FoilChanceInBooster=100
43 U Blue Elemental Blast
44 R Blue Sun's Zenith
45 C Borrowing 100,000 Arrows
46 U Brainstorm
46 C Brainstorm
47 U Brine Elemental
48 C Choking Tethers
49 C Coralhelm Guide

View File

@@ -328,7 +328,7 @@ public class InputAttack extends InputSyncronizedBase {
private void updateMessage() {
Localizer localizer = Localizer.getInstance();
String message = localizer.getMessage("lblSelectAttackCreatures") + currentDefender + localizer.getMessage("lblSelectAttackTarget");
String message = localizer.getMessage("lblSelectAttackCreatures") + " " + currentDefender + " " + localizer.getMessage("lblSelectAttackTarget");
if (potentialBanding) {
message += localizer.getMessage("lblSelectBandingTarget");
}

View File

@@ -86,7 +86,7 @@ public class InputBlock extends InputSyncronizedBase {
}
else {
String attackerName = currentAttacker.isFaceDown() ? localizer.getMessage("lblMorph") : currentAttacker.getName() + " (" + currentAttacker.getId() + ")";
String message = localizer.getMessage("lblSelectBlocker") + attackerName + localizer.getMessage("lblOrSelectBlockTarget");
String message = localizer.getMessage("lblSelectBlocker") + attackerName + " " + localizer.getMessage("lblOrSelectBlockTarget");
showMessage(message);
}