From a8ff9b48ec174c854fe034546bb0034c9a6b3304 Mon Sep 17 00:00:00 2001 From: PurpleCrowbar <26198472+PurpleCrowbar@users.noreply.github.com> Date: Sat, 15 Apr 2023 00:45:18 +0100 Subject: [PATCH] Fix Tribute to the World Tree --- Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java b/Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java index edbd7380558..39c3be23618 100644 --- a/Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java +++ b/Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java @@ -62,7 +62,7 @@ class TributeToTheWorldTreeEffect extends OneShotEffect { return false; } if (permanent.getPower().getValue() < 3) { - return permanent.addCounters(CounterType.P1P1.createInstance(), source, game); + return permanent.addCounters(CounterType.P1P1.createInstance(2), source, game); } Player player = game.getPlayer(source.getControllerId()); return player != null && player.drawCards(1, source, game) > 0;