diff --git a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java index d2bdbf9033b..17811985734 100644 --- a/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java +++ b/forge-gui/src/main/java/forge/player/PlayerControllerHuman.java @@ -96,7 +96,6 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont private final Localizer localizer = Localizer.getInstance(); protected Map spellViewCache = null; - protected GameEntityViewMap gameCache = new GameEntityViewMap<>(); public PlayerControllerHuman(final Game game0, final Player p, final LobbyPlayer lp) { super(game0, p, lp); @@ -2993,13 +2992,7 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont } public Card getCard(final CardView cardView) { - if (gameCache.containsKey(cardView)) { - return gameCache.get(cardView); - } - - final Card c = getGame().findById(cardView.getId()); - gameCache.put(cardView, c); - return c; + return getGame().findById(cardView.getId()); } public CardCollection getCardList(Iterable cardViews) {