mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Experimental: Run checkStaticAbilities before ETB triggers are checked.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user