mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28: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) {
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user