mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
reminder text adjustment: bloodthirst
This commit is contained in:
parent
3b90880fa3
commit
87a313e89c
1 changed files with 2 additions and 2 deletions
|
|
@ -20,7 +20,7 @@ import java.util.UUID;
|
|||
*/
|
||||
public class BloodthirstAbility extends EntersBattlefieldAbility {
|
||||
|
||||
private int amount;
|
||||
private final int amount;
|
||||
|
||||
public BloodthirstAbility(int amount) {
|
||||
super(new BloodthirstEffect(amount), "");
|
||||
|
|
@ -44,7 +44,7 @@ public class BloodthirstAbility extends EntersBattlefieldAbility {
|
|||
if (amount == 1) {
|
||||
sb.append("a +1/+1 counter");
|
||||
} else {
|
||||
sb.append(CardUtil.numberToText(amount)).append(" counters");
|
||||
sb.append(CardUtil.numberToText(amount)).append(" +1/+1 counters");
|
||||
}
|
||||
sb.append(" on it.)</i>");
|
||||
return sb.toString();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue