mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
- Fixed #5393
This commit is contained in:
parent
d1c1abb967
commit
0eedca5283
3 changed files with 19 additions and 16 deletions
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.abilities.common;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
|
|
@ -138,7 +137,8 @@ class ChapterTriggeredAbility extends TriggeredAbilityImpl {
|
|||
if (event.getTargetId().equals(getSourceId()) && event.getData().equals(CounterType.LORE.getName())) {
|
||||
int amountAdded = event.getAmount();
|
||||
int loreCounters = amountAdded;
|
||||
Permanent sourceSaga = game.getPermanentOrLKIBattlefield(getSourceId());
|
||||
//Permanent sourceSaga = game.getPermanentOrLKIBattlefield(getSourceId()); BUG #5393
|
||||
Permanent sourceSaga = game.getPermanent(getSourceId());
|
||||
if (sourceSaga == null) {
|
||||
sourceSaga = game.getPermanentEntering(getSourceId());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue