- Experimental: Run checkStaticAbilities before ETB triggers are checked.

This commit is contained in:
Sloth
2012-09-16 20:37:50 +00:00
parent 09d4e4ea26
commit 2bfb0309b6

View File

@@ -302,6 +302,12 @@ public class TriggerHandler {
if (checkStatics) { if (checkStatics) {
Singletons.getModel().getGameAction().checkStaticAbilities(); Singletons.getModel().getGameAction().checkStaticAbilities();
} else if (runParams.containsKey("Destination")){
// Check static abilities when a card enters the battlefield
String type = (String) runParams.get("Destination");
if (type.equals("Battlefield")) {
Singletons.getModel().getGameAction().checkStaticAbilities();
}
} }
// AP // AP