mirror of
https://github.com/correl/mage.git
synced 2025-04-04 17:00:13 -09:00
[mage.client] Fixed noise in foil cards effect.
This commit is contained in:
parent
85f69e1520
commit
5683a8c719
3 changed files with 4 additions and 5 deletions
Mage.Client/plugins
Mage.Common/src/mage/filters
Mage.Plugins/Mage.Card.Plugin/src/main/java/org/mage/plugins/card
Binary file not shown.
|
@ -9,9 +9,7 @@ import mage.filters.impl.HueFilter;
|
|||
*/
|
||||
public class FilterFactory {
|
||||
|
||||
private static final HueFilter hueFilter = new HueFilter();
|
||||
|
||||
public static HueFilter getHueFilter() {
|
||||
return hueFilter;
|
||||
return new HueFilter();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -41,7 +41,8 @@ import org.mage.plugins.card.info.CardInfoPaneImpl;
|
|||
|
||||
/**
|
||||
* {@link CardPlugin} implementation.
|
||||
*
|
||||
*
|
||||
* @version 0.4 05.01.2011 Added support for foil cards.
|
||||
* @version 0.3 07.11.2010 Mage cards.
|
||||
* @version 0.2 07.11.2010 Downloading images.
|
||||
* @version 0.1 01.11.2010 Mage permanents. Sorting card layout.
|
||||
|
@ -82,7 +83,7 @@ public class CardPluginImpl implements CardPlugin {
|
|||
}
|
||||
|
||||
public String toString() {
|
||||
return "[Card plugin, version 0.3]";
|
||||
return "[Card plugin, version 0.4]";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue