mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
Modified filterListByType method so isRemembered works correctly
This commit is contained in:
@@ -1657,7 +1657,7 @@ public class AbilityFactory {
|
||||
|
||||
source = (Card) (o);
|
||||
type = type.replace("Triggered", "Card");
|
||||
} else if (type.contains("Remembered")) {
|
||||
} else if (type.startsWith("Remembered")) {
|
||||
boolean hasRememberedCard = false;
|
||||
for (Object o : source.getRemembered()) {
|
||||
if (o instanceof Card) {
|
||||
|
||||
Reference in New Issue
Block a user