[mage.client] Fixed noise in foil cards effect.

This commit is contained in:
magenoxx 2011-01-05 15:18:46 +03:00
parent 85f69e1520
commit 5683a8c719
3 changed files with 4 additions and 5 deletions

View file

@ -9,9 +9,7 @@ import mage.filters.impl.HueFilter;
*/ */
public class FilterFactory { public class FilterFactory {
private static final HueFilter hueFilter = new HueFilter();
public static HueFilter getHueFilter() { public static HueFilter getHueFilter() {
return hueFilter; return new HueFilter();
} }
} }

View file

@ -42,6 +42,7 @@ import org.mage.plugins.card.info.CardInfoPaneImpl;
/** /**
* {@link CardPlugin} implementation. * {@link CardPlugin} implementation.
* *
* @version 0.4 05.01.2011 Added support for foil cards.
* @version 0.3 07.11.2010 Mage cards. * @version 0.3 07.11.2010 Mage cards.
* @version 0.2 07.11.2010 Downloading images. * @version 0.2 07.11.2010 Downloading images.
* @version 0.1 01.11.2010 Mage permanents. Sorting card layout. * @version 0.1 01.11.2010 Mage permanents. Sorting card layout.
@ -82,7 +83,7 @@ public class CardPluginImpl implements CardPlugin {
} }
public String toString() { public String toString() {
return "[Card plugin, version 0.3]"; return "[Card plugin, version 0.4]";
} }
@Override @Override