mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
Merge branch '1169-sedge-sliver-isn-t-working-correct-with-pt-boost' into 'master'
Resolve "Sedge Sliver isn't working correct with PT boost" Closes #1169 See merge request core-developers/forge!2196
This commit is contained in:
@@ -781,11 +781,10 @@ public class GameAction {
|
||||
final Card co = preList.get(c);
|
||||
List<StaticAbility> toRemove = Lists.newArrayList();
|
||||
for (StaticAbility stAb : co.getStaticAbilities()) {
|
||||
if (stAb.getParam("Mode").equals("Continuous")) {
|
||||
staticAbilities.add(stAb);
|
||||
}
|
||||
if (stAb.isTemporary()) {
|
||||
toRemove.add(stAb);
|
||||
} else if (stAb.getParam("Mode").equals("Continuous")) {
|
||||
staticAbilities.add(stAb);
|
||||
}
|
||||
}
|
||||
for (StaticAbility stAb : toRemove) {
|
||||
|
||||
Reference in New Issue
Block a user