* Cryptborn Horror - Fixed that it did not get the +1/+1 counters when entering the battlefield.

This commit is contained in:
LevelX2 2015-12-31 11:12:39 +01:00
parent 9f22eb0688
commit b0e8b03b74
3 changed files with 15 additions and 20 deletions

View file

@ -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;
}