- Reenabling CheckStaticEffects in triggerhandler

This commit is contained in:
Sol
2012-12-12 03:36:14 +00:00
parent 15545865af
commit 40e25362bf

View File

@@ -322,15 +322,13 @@ public class TriggerHandler {
}
}
// Commenting out the checkStaticAbilities() section
// Since this should generally be called from within checkStaticAbilities
if (checkStatics) {
//game.getAction().checkStaticAbilities();
game.getAction().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")) {
//game.getAction().checkStaticAbilities();
game.getAction().checkStaticAbilities();
}
}