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

This commit is contained in:
Agetian
2017-09-23 11:58:47 +00:00
parent 2d6ff3b74c
commit df4b625ac4

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);
}