fix did not gain creature type Blinkmoth

master
melvin 2013-07-20 16:26:02 +08:00
parent e1e91b8e8e
commit 866466a84a
1 changed files with 4 additions and 0 deletions

View File

@ -16,6 +16,10 @@ def ST = new MagicStatic(MagicLayer.Type, MagicStatic.UntilEOT) {
public int getTypeFlags(final MagicPermanent permanent,final int flags) {
return flags|MagicType.Artifact.getMask()|MagicType.Creature.getMask();
}
@Override
public void modSubTypeFlags(final MagicPermanent permanent, final Set<MagicSubType> flags) {
flags.add(MagicSubType.Blinkmoth);
}
};
[