[SWS] Fixed some problems.

This commit is contained in:
LevelX2 2016-10-02 22:50:34 +02:00
parent da685472d8
commit 6554102367
7 changed files with 36 additions and 66 deletions

View file

@ -55,7 +55,7 @@ public class HateCondition implements Condition {
@Override
public boolean apply(Game game, Ability source) {
LifeLossOtherFromCombatWatcher watcher = (LifeLossOtherFromCombatWatcher) game.getState().getWatchers().get(LifeLossOtherFromCombatWatcher.class.getName());
return watcher != null && watcher.opponentLostLifeOtherFromCombat(source.getControllerId());
return watcher != null && watcher.opponentLostLifeOtherFromCombat(source.getControllerId(), game);
}
@Override