mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
minor changes
This commit is contained in:
parent
814aefca80
commit
082a1fcb64
3 changed files with 10 additions and 4 deletions
|
@ -276,7 +276,7 @@ public class CombatUtil {
|
|||
try {
|
||||
canBlock = blocker.canBlock(null, game);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
//e.printStackTrace();
|
||||
}
|
||||
}
|
||||
return canBlock;
|
||||
|
|
|
@ -317,7 +317,8 @@ public final class Constants {
|
|||
AddAbility(true),
|
||||
LoseAbility(false),
|
||||
GainLife(true),
|
||||
ExtraTurn(true),
|
||||
LoseLife(false),
|
||||
ExtraTurn(true),
|
||||
BecomeCreature(true),
|
||||
PutCreatureInPlay(true),
|
||||
PutCardInPlay(true),
|
||||
|
|
|
@ -28,12 +28,13 @@
|
|||
|
||||
package mage.cards;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
import mage.Constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.game.Game;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
|
@ -46,6 +47,10 @@ public class CardsImpl extends LinkedHashSet<UUID> implements Cards, Serializabl
|
|||
|
||||
public CardsImpl() { }
|
||||
|
||||
public CardsImpl(Card card) {
|
||||
this.add(card.getId());
|
||||
}
|
||||
|
||||
public CardsImpl(Zone zone) {
|
||||
this.zone = zone;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue