From 0a976a3e3155e08958a1f7934964c6c178767e7b Mon Sep 17 00:00:00 2001 From: Sloth Date: Mon, 29 Apr 2013 14:08:24 +0000 Subject: [PATCH] - Fixed Chains of Mephistopheles. --- src/main/java/forge/game/player/Player.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/forge/game/player/Player.java b/src/main/java/forge/game/player/Player.java index 71476b7295f..2849b93b648 100644 --- a/src/main/java/forge/game/player/Player.java +++ b/src/main/java/forge/game/player/Player.java @@ -1320,7 +1320,7 @@ public abstract class Player extends GameEntity implements Comparable { // This is why the code is placed after any other replacement effects could affect the draw event. List chainsList = null; - for(Card c: game.getCardsInGame()) { + for(Card c : game.getCardsIn(ZoneType.Battlefield)) { if ( c.getName().equals("Chains of Mephistopheles") ) { if ( null == chainsList ) chainsList = new ArrayList();