Skip to content

Commit

Permalink
Fix Tribute to the World Tree to still draw a card if the creature ha…
Browse files Browse the repository at this point in the history
…s died before the ability resolves.
  • Loading branch information
Grath committed Jan 21, 2025
1 parent 9ba12d1 commit 29bab5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/t/TributeToTheWorldTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public boolean apply(Game game, Ability source) {
}

// We need to ask the game for the actualized object for the entering permanent.
Permanent permanent = game.getPermanent(permanentEntering.getId());
Permanent permanent = game.getPermanentOrLKIBattlefield(permanentEntering.getId());
if (permanent == null) {
return false;
}
Expand Down

0 comments on commit 29bab5f

Please sign in to comment.