- Adapted the DigEffect implementation of Explore until the effect is fully converted and it can be removed.

git-svn-id: http://svn.slightlymagic.net/forge/trunk@35722 269b9781-a132-4a9b-9d4e-f004f1b56b58
This commit is contained in:
Agetian 2017-09-23 11:58:47 +00:00
parent 3518dba4de
commit 88746936a9

View File

@ -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<String, Object> runParams = Maps.newHashMap();
runParams.put("Explorer", sa.getHostCard());
runParams.put("Card", sa.getHostCard());
game.getTriggerHandler().runTrigger(TriggerType.Explores, runParams, false);
}