changed Blade of the Bloodchief to check if it's equipped

master
beholder 2012-02-08 14:43:46 +01:00
parent 66183d7de0
commit c3b0cd1204
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ public class Blade_of_the_Bloodchief {
public MagicEvent executeTrigger(final MagicGame game,final MagicPermanent permanent,final MagicPermanent otherPermanent) {
final MagicPermanent equippedCreature = permanent.getEquippedCreature();
final boolean isVampire = equippedCreature.hasSubType(MagicSubType.Vampire, game);
return (otherPermanent.isCreature(game)) ?
return (equippedCreature != MagicPermanent.NONE && otherPermanent.isCreature(game)) ?
new MagicEvent(
permanent,
permanent.getController(),