Skip to content

Commit

Permalink
* Negan, The Cold Blooded - fixed that it triggers on own creatures i…
Browse files Browse the repository at this point in the history
…nstead opponents (magefree#7207);
  • Loading branch information
JayDi85 committed Nov 27, 2020
1 parent 31fac18 commit 513609b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public boolean checkTrigger(GameEvent event, Game game) {
break;
case OPPONENT:
Player controller = game.getPlayer(getControllerId());
if (controller == null || !controller.hasOpponent(event.getPlayerId(), game)) {
if (controller == null || controller.hasOpponent(event.getPlayerId(), game)) {
sacrificed = true;
}
break;
Expand Down

0 comments on commit 513609b

Please sign in to comment.