mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Fix for intervening if trigger bug
This commit is contained in:
@@ -352,6 +352,11 @@ public class WrappedAbility extends Ability implements ISpellAbility {
|
||||
if (!regtrig.requirementsCheck(game)) {
|
||||
return;
|
||||
}
|
||||
// Since basic requirements check only cares about whether it's "Activated"
|
||||
// Also check on triggered object specific requirements on resolution (e.g. evolve)
|
||||
if (!regtrig.meetsRequirementsOnTriggeredObjects(game, regtrig.getRunParams())) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (triggerParams.containsKey("ResolvingCheck")) {
|
||||
|
||||
Reference in New Issue
Block a user