forked from External/mage
fixed issue with Kruphix, God of Horizons and Horizon Stone causing endless replacement effect loop
This commit is contained in:
parent
51c9121f5e
commit
2ffa719278
7 changed files with 137 additions and 75 deletions
15
Mage/src/main/java/mage/Emptiable.java
Normal file
15
Mage/src/main/java/mage/Emptiable.java
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
package mage;
|
||||
|
||||
import mage.constants.ManaType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public interface Emptiable {
|
||||
|
||||
public void add(ManaType manaType, int amount);
|
||||
|
||||
public void clear(ManaType manaType);
|
||||
|
||||
public int get(final ManaType manaType);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue