mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
fix funny card filter, it seems the inclusion of shock lands on funny set (Unfinity) causes the filter to fail...
This commit is contained in:
@@ -99,7 +99,7 @@ public class StaticData {
|
|||||||
|
|
||||||
final String cardName = card.getName();
|
final String cardName = card.getName();
|
||||||
|
|
||||||
if (!loadNonLegalCards && !card.getType().isBasicLand() && funnyCards.contains(cardName))
|
if (!loadNonLegalCards && !card.getType().isLand() && funnyCards.contains(cardName))
|
||||||
filtered.add(cardName);
|
filtered.add(cardName);
|
||||||
|
|
||||||
if (card.isVariant()) {
|
if (card.isVariant()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user