diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index 451a4dfacfe..47716a79447 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -219,6 +219,8 @@ public enum CardRepository { for (CardInfo card : results) { subtypes.addAll(card.getSubTypes()); } + // Some creature types are not directly included in card types and are added here manually + subtypes.add("Blinkmoth"); } catch (SQLException ex) { } return subtypes;