From 9536066ba4d25149c7f73f86adea52da76be0519 Mon Sep 17 00:00:00 2001 From: Dustin Conrad Date: Thu, 21 Aug 2014 19:22:06 -0400 Subject: [PATCH] Fix #532, Bile Blight bug --- Mage.Sets/src/mage/sets/bornofthegods/BileBlight.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mage.Sets/src/mage/sets/bornofthegods/BileBlight.java b/Mage.Sets/src/mage/sets/bornofthegods/BileBlight.java index 7081d029ebe..756d7a52520 100644 --- a/Mage.Sets/src/mage/sets/bornofthegods/BileBlight.java +++ b/Mage.Sets/src/mage/sets/bornofthegods/BileBlight.java @@ -90,4 +90,9 @@ class BileBlightEffect extends BoostAllEffect { } } } + + @Override + public BileBlightEffect copy() { + return new BileBlightEffect(); + } }