mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Untap/Tap trigger weren't actually hooked up properly.
This commit is contained in:
@@ -31,7 +31,7 @@ public class AbilityFactory_PermanentState {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean doTrigger(boolean mandatory) {
|
public boolean doTrigger(boolean mandatory) {
|
||||||
return untapCanPlayAI(af,this);
|
return untapTrigger(af,this, mandatory);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -86,7 +86,7 @@ public class AbilityFactory_PermanentState {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean doTrigger(boolean mandatory) {
|
public boolean doTrigger(boolean mandatory) {
|
||||||
return untapPlayDrawbackAI(af, this);
|
return untapTrigger(af, this, mandatory);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -384,7 +384,7 @@ public class AbilityFactory_PermanentState {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean doTrigger(boolean mandatory) {
|
public boolean doTrigger(boolean mandatory) {
|
||||||
return tapCanPlayAI(af,this);
|
return tapTrigger(af, this, mandatory);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@@ -439,7 +439,7 @@ public class AbilityFactory_PermanentState {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean doTrigger(boolean mandatory) {
|
public boolean doTrigger(boolean mandatory) {
|
||||||
return tapPlayDrawbackAI(af, this);
|
return tapTrigger(af, this, mandatory);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user