mirror of
https://github.com/magefree/mage.git
synced 2026-01-18 09:19:56 -08:00
Reworked emblems
This commit is contained in:
parent
3f1ae983c1
commit
9c8fe7268b
12 changed files with 264 additions and 18 deletions
|
|
@ -44,7 +44,6 @@ import mage.cards.Card;
|
|||
import mage.choices.Choice;
|
||||
import mage.choices.Choices;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.target.Target;
|
||||
import mage.target.Targets;
|
||||
import org.apache.log4j.Logger;
|
||||
|
|
@ -459,7 +458,11 @@ public abstract class AbilityImpl<T extends AbilityImpl<T>> implements Ability {
|
|||
|
||||
@Override
|
||||
public boolean isInUseableZone(Game game, boolean checkLKI) {
|
||||
Permanent permanent = game.getPermanent(getSourceId());
|
||||
|
||||
// emblem are always actual
|
||||
if (zone.equals(Zone.COMMAND)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// try LKI first
|
||||
if (checkLKI) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue