forked from External/mage
* Cryptborn Horror - Fixed that it did not get the +1/+1 counters when entering the battlefield.
This commit is contained in:
parent
9f22eb0688
commit
b0e8b03b74
3 changed files with 15 additions and 20 deletions
|
|
@ -49,8 +49,8 @@ public class OpponentsLostLifeCount implements DynamicValue {
|
|||
PlayerLostLifeWatcher watcher = (PlayerLostLifeWatcher) game.getState().getWatchers().get("PlayerLostLifeWatcher");
|
||||
if (watcher != null) {
|
||||
int amountLifeLost = 0;
|
||||
for (UUID opponent : game.getOpponents(controllerId)) {
|
||||
amountLifeLost += watcher.getLiveLost(opponent);
|
||||
for (UUID opponentId : game.getOpponents(controllerId)) {
|
||||
amountLifeLost += watcher.getLiveLost(opponentId);
|
||||
}
|
||||
return amountLifeLost;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue