From 18bc7df6c99538672ec61969137877725bc62aaa Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 22 Apr 2015 15:27:24 +0200 Subject: [PATCH] Added Blinkmoth to the list of creature types. --- Mage/src/mage/cards/repository/CardRepository.java | 2 ++ 1 file changed, 2 insertions(+) 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;