From df4b625ac481b513d7a7c8317f136616f85d9d72 Mon Sep 17 00:00:00 2001 From: Agetian Date: Sat, 23 Sep 2017 11:58:47 +0000 Subject: [PATCH] - Adapted the DigEffect implementation of Explore until the effect is fully converted and it can be removed. --- .../src/main/java/forge/game/ability/effects/DigEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java index a30915bc463..6fb15f7cb3c 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java @@ -170,7 +170,7 @@ public class DigEffect extends SpellAbilityEffect { // TODO: until Explore is written as a separate effect, this param can be used to emulate "X Explores" // by firing the relevant trigger. Once Explores is a separate effect, this code can be removed. final Map runParams = Maps.newHashMap(); - runParams.put("Explorer", sa.getHostCard()); + runParams.put("Card", sa.getHostCard()); game.getTriggerHandler().runTrigger(TriggerType.Explores, runParams, false); }