This commit is contained in:
Alex W. Jackson 2021-09-27 09:48:01 -04:00 committed by GitHub
parent c36f976741
commit bf172f7c8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ class StrengthOfTheTajuruAddCountersTargetEffect extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
int affectedTargets = 0;
int amount = source.getManaCostsToPay().getX() + 1;
int amount = source.getManaCostsToPay().getX();
Counter counter = CounterType.P1P1.createInstance(amount);
for (UUID uuid : targetPointer.getTargets(game, source)) {
Permanent permanent = game.getPermanent(uuid);