forked from External/mage
fix game log message for Banding (#11021)
This commit is contained in:
parent
b0b55d2de3
commit
eec5bceb71
1 changed files with 2 additions and 1 deletions
|
|
@ -433,8 +433,9 @@ public class Combat implements Serializable, Copyable<Combat> {
|
|||
if (!isBanded) {
|
||||
return;
|
||||
}
|
||||
int bandSize = attacker.getBandedCards().size() + 1;
|
||||
StringBuilder sb = new StringBuilder(player.getLogName()).append(" formed a band with ")
|
||||
.append(attacker.getBandedCards().size()).append(1).append(" creatures: ");
|
||||
.append(bandSize).append(" creatures: ");
|
||||
sb.append(attacker.getLogName());
|
||||
for (UUID id : attacker.getBandedCards()) {
|
||||
sb.append(", ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue