mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
fixed not serializable error
This commit is contained in:
parent
17ca2de0c9
commit
d01c992f2e
1 changed files with 3 additions and 1 deletions
|
@ -27,10 +27,12 @@
|
||||||
*/
|
*/
|
||||||
package mage.filter;
|
package mage.filter;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author nantuko
|
* @author nantuko
|
||||||
*/
|
*/
|
||||||
public class FilterMana {
|
public class FilterMana implements Serializable {
|
||||||
|
|
||||||
protected boolean black;
|
protected boolean black;
|
||||||
protected boolean green;
|
protected boolean green;
|
||||||
|
|
Loading…
Reference in a new issue